Skip to content

Commit

Permalink
feat(sdk): Turn off alloy-* crate features by default (#1980)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored Jan 24, 2025
1 parent 5972269 commit 40a9d84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 28 deletions.
24 changes: 0 additions & 24 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions crates/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ sp1-stark = { workspace = true }
sp1-primitives = { workspace = true }
itertools = { workspace = true }
tonic = { version = "0.12", features = ["tls", "tls-roots"], optional = true }
alloy-sol-types = { version = "0.8", optional = true }
alloy-signer = { version = "0.8", optional = true }
alloy-signer-local = { version = "0.8", optional = true }
alloy-primitives = { version = "0.8", optional = true }
alloy-sol-types = { version = "0.8", default-features = false, optional = true }
alloy-signer = { version = "0.8", default-features = false, optional = true }
alloy-signer-local = { version = "0.8", default-features = false, optional = true }
alloy-primitives = { version = "0.8", default-features = false, optional = true }
backoff = { version = "0.4", features = ["tokio"], optional = true }

[dev-dependencies]
Expand Down

0 comments on commit 40a9d84

Please sign in to comment.