Skip to content

Commit

Permalink
chore: Remove concurrent feature from miden-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGackstatter committed Jan 14, 2025
1 parent dab6159 commit 2b2d389
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/tx-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async = ["miden-tx/async"]
default = ["std"]
std = ["miden-objects/std", "miden-tx/std", "dep:tokio", "dep:tonic-web", "dep:tokio-stream", "dep:axum", "dep:tracing", "dep:tracing-subscriber", "tonic/transport"]
testing = ["miden-objects/testing", "miden-lib/testing", "miden-tx/testing"]
concurrent = ["miden-lib/concurrent", "miden-tx/concurrent", "std"]
concurrent = ["miden-tx/concurrent", "std"]

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
tonic-web-wasm-client = { version = "0.6", default-features = false }
Expand Down
2 changes: 0 additions & 2 deletions miden-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ edition.workspace = true
[lib]

[features]
concurrent = ["std"]
default = ["std"]
std = ["assembly/std", "miden-objects/std", "miden-stdlib/std", "vm-processor/std"]
# the testing feature is required to enable the account creation pow patch
testing = ["miden-objects/testing"]
with-debug-info = ["miden-stdlib/with-debug-info"]

Expand Down
2 changes: 1 addition & 1 deletion miden-tx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "tests/integration/main.rs"

[features]
async = ["winter-maybe-async/async"]
concurrent = ["miden-lib/concurrent", "miden-prover/concurrent", "std"]
concurrent = ["miden-prover/concurrent", "std"]
default = ["std"]
std = ["miden-lib/std", "miden-objects/std", "miden-prover/std", "miden-verifier/std", "vm-processor/std"]
testing = ["miden-objects/testing", "miden-lib/testing", "vm-processor/testing", "dep:rand_chacha"]
Expand Down

0 comments on commit 2b2d389

Please sign in to comment.