Skip to content

Commit

Permalink
feat: enable more features transitively in meta crate (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jul 24, 2024
1 parent 24364ac commit 315f9a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions crates/alloy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ network = ["dep:alloy-network"]
node-bindings = ["dep:alloy-node-bindings", "alloy-provider?/anvil-node"]

# providers
providers = ["dep:alloy-provider", "rpc-client", "eips"]
providers = ["dep:alloy-provider", "rpc-client", "transports", "eips"]
provider-http = ["providers", "transport-http"]
provider-ws = ["providers", "alloy-provider?/ws", "transport-ws"]
provider-ipc = ["providers", "alloy-provider?/ipc", "transport-ipc"]
Expand Down Expand Up @@ -184,9 +184,9 @@ pubsub = [
# rpc
rpc = []
json-rpc = ["rpc", "dep:alloy-json-rpc"]
rpc-client = ["rpc", "dep:alloy-rpc-client"]
rpc-client-ws = ["rpc-client", "alloy-rpc-client?/ws"]
rpc-client-ipc = ["rpc-client", "alloy-rpc-client?/ipc"]
rpc-client = ["rpc", "transports", "transport-http", "dep:alloy-rpc-client"]
rpc-client-ws = ["rpc-client", "transport-ws", "alloy-rpc-client?/ws"]
rpc-client-ipc = ["rpc-client", "transport-ipc", "alloy-rpc-client?/ipc"]
rpc-types = ["rpc", "dep:alloy-rpc-types", "alloy-rpc-types?/eth"]
rpc-types-admin = [
"rpc-types",
Expand Down
1 change: 0 additions & 1 deletion crates/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ tokio = { workspace = true, features = ["rt", "time"] }
wasm-bindgen-futures = { version = "0.4", optional = true }

[features]

wasm-bindgen = ["dep:wasm-bindgen-futures"]

0 comments on commit 315f9a2

Please sign in to comment.