Skip to content

Commit 202c8b1

Browse files
authored
chore: update itertools and base64 (#225)
1 parent 1971ad8 commit 202c8b1

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

Cargo-1.65.lock

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@ version = "0.21.7"
9191
source = "registry+https://github.com/rust-lang/crates.io-index"
9292
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
9393

94+
[[package]]
95+
name = "base64"
96+
version = "0.22.1"
97+
source = "registry+https://github.com/rust-lang/crates.io-index"
98+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
99+
94100
[[package]]
95101
name = "base64ct"
96102
version = "1.6.0"
@@ -859,9 +865,9 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
859865

860866
[[package]]
861867
name = "itertools"
862-
version = "0.10.5"
868+
version = "0.14.0"
863869
source = "registry+https://github.com/rust-lang/crates.io-index"
864-
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
870+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
865871
dependencies = [
866872
"either",
867873
]
@@ -1045,7 +1051,7 @@ version = "5.0.0"
10451051
source = "registry+https://github.com/rust-lang/crates.io-index"
10461052
checksum = "51e219e79014df21a225b1860a479e2dcd7cbd9130f4defd4bd0e191ea31d67d"
10471053
dependencies = [
1048-
"base64",
1054+
"base64 0.21.7",
10491055
"chrono",
10501056
"curl",
10511057
"getrandom",
@@ -1081,7 +1087,7 @@ name = "openidconnect"
10811087
version = "4.0.1"
10821088
dependencies = [
10831089
"anyhow",
1084-
"base64",
1090+
"base64 0.22.1",
10851091
"chrono",
10861092
"color-backtrace",
10871093
"dyn-clone",
@@ -1382,7 +1388,7 @@ version = "0.12.0"
13821388
source = "registry+https://github.com/rust-lang/crates.io-index"
13831389
checksum = "58b48d98d932f4ee75e541614d32a7f44c889b72bd9c2e04d95edd135989df88"
13841390
dependencies = [
1385-
"base64",
1391+
"base64 0.21.7",
13861392
"bytes",
13871393
"futures-channel",
13881394
"futures-core",
@@ -1523,7 +1529,7 @@ version = "1.0.4"
15231529
source = "registry+https://github.com/rust-lang/crates.io-index"
15241530
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
15251531
dependencies = [
1526-
"base64",
1532+
"base64 0.21.7",
15271533
]
15281534

15291535
[[package]]
@@ -1679,7 +1685,7 @@ version = "3.7.0"
16791685
source = "registry+https://github.com/rust-lang/crates.io-index"
16801686
checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
16811687
dependencies = [
1682-
"base64",
1688+
"base64 0.21.7",
16831689
"chrono",
16841690
"hex",
16851691
"indexmap 1.9.3",
@@ -2017,7 +2023,7 @@ version = "2.9.6"
20172023
source = "registry+https://github.com/rust-lang/crates.io-index"
20182024
checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35"
20192025
dependencies = [
2020-
"base64",
2026+
"base64 0.21.7",
20212027
"flate2",
20222028
"log",
20232029
"once_cell",

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ name = "okta_device_grant"
4141
required-features = ["reqwest-blocking"]
4242

4343
[dependencies]
44-
base64 = "0.21"
44+
base64 = "0.22"
4545
# Disable 'time' dependency since it triggers RUSTSEC-2020-0071 and we don't need it.
4646
chrono = { version = "0.4", default-features = false, features = [
4747
"clock",
@@ -50,7 +50,7 @@ chrono = { version = "0.4", default-features = false, features = [
5050
] }
5151
thiserror = "1.0"
5252
http = "1.0"
53-
itertools = "0.10"
53+
itertools = "0.14"
5454
log = "0.4"
5555
oauth2 = { version = "5.0.0", default-features = false }
5656
rand = "0.8.5"

0 commit comments

Comments
 (0)