Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ path = "tests/fixtures.rs"

[dependencies]
# Multistore
multistore = { version = "0.6.4", features = ["azure"] }
multistore = { version = "0.6.4", features = ["azure", "gcp"] }
multistore-oidc-provider = "0.6.4"
multistore-path-mapping = "0.6.4"
multistore-sts = "0.6.4"
Expand All @@ -61,7 +61,13 @@ tracing = "0.1"
# Pulled in transitively via object_store -> rand. getrandom doesn't support
# wasm32-unknown-unknown unless the `wasm_js` backend is enabled, so opt in here.
getrandom = { version = "0.4", features = ["wasm_js"] }
multistore-cf-workers = { version = "0.6.4", features = ["azure"] }
# object_store's GCS credential signing calls ring's SystemRandom, whose
# SecureRandom impl on wasm32-unknown-unknown is gated behind ring's
# `wasm32_unknown_unknown_js` feature (enables getrandom 0.2's js backend).
# 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.6.4", 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. We only use `Client::new()`, `.send()` and `.text()`, none
Expand Down
Loading