Skip to content

Commit

Permalink
enable reqwest when enabling sub-flag for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks committed Jun 25, 2024
1 parent 8a38d25 commit 7c1df0f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions crates/alloy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ reqwest = [
"alloy-provider?/reqwest",
"alloy-transport-http?/reqwest",
]
reqwest-default-tls = ["alloy-transport-http?/reqwest-default-tls"]
reqwest-rustls-tls = ["alloy-transport-http?/reqwest-rustls-tls"]
reqwest-native-tls = ["alloy-transport-http?/reqwest-native-tls"]
reqwest-default-tls = ["reqwest", "alloy-transport-http?/reqwest-default-tls"]
reqwest-rustls-tls = ["reqwest", "alloy-transport-http?/reqwest-rustls-tls"]
reqwest-native-tls = ["reqwest", "alloy-transport-http?/reqwest-native-tls"]
hyper = [
"dep:hyper",
"alloy-rpc-client?/hyper",
Expand Down Expand Up @@ -131,7 +131,6 @@ providers = ["dep:alloy-provider", "rpc-client", "eips"]
provider-http = ["providers", "transport-http"]
provider-ws = ["providers", "alloy-provider?/ws", "transport-ws"]
provider-ipc = ["providers", "alloy-provider?/ipc", "transport-ipc"]

provider-admin-api = [
"providers",
"alloy-provider?/admin-api",
Expand Down Expand Up @@ -162,7 +161,6 @@ provider-txpool-api = [
"alloy-provider?/txpool-api",
"rpc-types-txpool",
]

provider-anvil-node = [
"providers",
"provider-anvil-api",
Expand Down

0 comments on commit 7c1df0f

Please sign in to comment.