Skip to content

Commit

Permalink
Add concurrent feature to miden-lib (#364)
Browse files Browse the repository at this point in the history
* add concurrent feature to miden-lib

* imply std
  • Loading branch information
plafer authored Dec 15, 2023
1 parent a2f0bc6 commit b7a68d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion miden-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ rust-version = "1.67"
[lib]

[features]
concurrent = ["miden-objects/concurrent", "std"]
default = ["std"]
std = ["assembly/std", "miden-objects/std", "miden-stdlib/std", "vm-processor/std", "vm-core/std"]
# the testing feature is required to enable the account creation pow patch
Expand All @@ -25,7 +26,9 @@ vm-core = { workspace = true }
vm-processor = { workspace = true }

[dev-dependencies]
miden-objects = { package = "miden-objects", path = "../objects", default-features = false, features = ["testing"] }
miden-objects = { package = "miden-objects", path = "../objects", default-features = false, features = [
"testing",
] }
miden-stdlib = { workspace = true }
miden-tx = { package = "miden-tx", path = "../miden-tx", default-features = false }
mock = { package = "miden-mock", path = "../mock", default-features = false }
Expand Down

0 comments on commit b7a68d1

Please sign in to comment.