diff --git a/Cargo.lock b/Cargo.lock index fc3124f..f18ca45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,9 +1034,9 @@ dependencies = [ [[package]] name = "multistore" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2ea59297a4aac2cbea49e6e55320f6cc5d974cd167337afc9dfcc1b386bd3f4" +checksum = "cbf0d34cce7e97df06f76b1a711d6bd655ce079dc7b32bea049d2432cfa2780d" dependencies = [ "async-trait", "base64", @@ -1063,9 +1063,9 @@ dependencies = [ [[package]] name = "multistore-cf-workers" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b23afaa6c9ecc498314858a3a2c2600b4880ffa8c4f0f3339cb2a86c8b70e857" +checksum = "f8d3c198c3e31ea7903e15f7af15c10b5d5b1c62f16b62a00e458872d5ae1d72" dependencies = [ "async-trait", "bytes", @@ -1090,13 +1090,12 @@ dependencies = [ [[package]] name = "multistore-oidc-provider" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00a3ee043aa16fbbca9b324e001865d9d7e3c1fb55041106cf8d8c52b452f95d" +checksum = "03ecb56666012a49cc8fdbaf60564337b04c1f89230bace11240604c4ddf56ef" dependencies = [ "base64", "chrono", - "futures", "multistore", "quick-xml", "rsa", @@ -1110,9 +1109,9 @@ dependencies = [ [[package]] name = "multistore-path-mapping" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7fd87532e2f48fa4496597012735c05dd4cdfcb3e9517d8c5cfa89e5cd20e4e" +checksum = "22e0738451d593e53eafdb2e33f7c2ceef622d2d8b21a42f59e389649a2c294d" dependencies = [ "multistore", "percent-encoding", @@ -1121,9 +1120,9 @@ dependencies = [ [[package]] name = "multistore-sts" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e89dd8f5e7755359eaf9d9ba94a30ed69cc2a5b067ccc53c61a8a28b10fd044" +checksum = "449762c5aac6de3ca7f96430dc6af2e668b1f93c041e58aa181148bb5dd7bebb" dependencies = [ "aes-gcm", "base64", diff --git a/Cargo.toml b/Cargo.toml index 7782aec..b3e08b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,10 +36,10 @@ path = "tests/fixtures.rs" [dependencies] # Multistore -multistore = { version = "0.7.1", features = ["azure", "gcp"] } -multistore-oidc-provider = "0.7.1" -multistore-path-mapping = "0.7.1" -multistore-sts = "0.7.1" +multistore = { version = "0.7.2", features = ["azure", "gcp"] } +multistore-oidc-provider = "0.7.2" +multistore-path-mapping = "0.7.2" +multistore-sts = "0.7.2" # Serialization serde = { version = "1", features = ["derive"] } @@ -67,7 +67,7 @@ getrandom = { version = "0.4", features = ["wasm_js"] } # ring is transitive (via object_store); this direct entry only turns the # feature on for the wasm target. ring = { version = "0.17", features = ["wasm32_unknown_unknown_js"] } -multistore-cf-workers = { version = "0.7.1", features = ["azure", "gcp"] } +multistore-cf-workers = { version = "0.7.2", features = ["azure", "gcp"] } # On wasm32-unknown-unknown reqwest selects its browser `fetch` backend by # target arch (not a cargo feature), so the default TLS/backend features are # unnecessary here. The `form` feature gates `.form()`, which the STS @@ -86,4 +86,3 @@ web-sys = { version = "0.3", features = [ ] } worker = { version = "=0.7.5", features = ["http"] } worker-macros = { version = "=0.7.5", features = ["http"] } -