Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aws deps in service-client #1734

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Drop aws-lc-rs
  • Loading branch information
jackkleeman committed Jul 20, 2024
commit 9c7280ec557e1f613f6f3f88c07e9c41873786be
81 changes: 5 additions & 76 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/service-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pem = { version = "3.0.3" }
tower-service = { version = "0.3" }
ring = { version = "0.17.8" }
restate-types = { workspace = true }
rustls = {version = "0.23.11", features = ["ring"]}
rustls = {version = "0.23.11", default-features = false, features = ["ring"]}
schemars = { workspace = true, optional = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/storage-query-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ datafusion-expr = { workspace = true }
derive_builder = { workspace = true }
futures = { workspace = true }
paste = { workspace = true}
pgwire = "0.23"
pgwire = {version = "0.23", default-features = false, features = ["server-api-ring"]}
prost = {workspace = true}
schemars = { workspace = true, optional = true }
serde = { workspace = true }
Expand Down
Loading