Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
chore: remove features from tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Apr 14, 2023
1 parent 8a08c1e commit 6bf0064
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 61 deletions.
66 changes: 9 additions & 57 deletions Cargo.lock

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

6 changes: 2 additions & 4 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ acvm = { version = "0.9.0", features = ["bn254"] }
sled = "0.34.6"
blake2 = "0.9.1"
dirs = { version = "3.0", optional = true }
reqwest = { version = "0.11.3", optional = true, default-features = false, features = ["stream", "rustls-tls"] }
tokio = { version = "1", optional = true, features=["full"] }
reqwest = { version = "0.11.16", optional = true, default-features = false, features = ["stream", "rustls-tls"] }
tokio = { version = "1.0", optional = true }
futures-util = { version = "0.3.14", optional = true }
indicatif = { version = "0.17.3", optional = true }

[features]
# This feature flag is here because we cannot compile
# the downloader dependency with the wasm32 target
default = ["std"]
std = ["dep:reqwest", "dep:tokio", "dep:futures-util", "dep:dirs", "dep:indicatif"]

0 comments on commit 6bf0064

Please sign in to comment.