This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent
bn254
feature flag always being enabled (#225)
* fix: prevent bn254 feature flag always being enabled * chore: misc `Cargo.toml` cleanup
- Loading branch information
1 parent
198fb69
commit 82eee6a
Showing
4 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
members = ["acir_field", "acir", "acvm", "stdlib"] | ||
|
||
[workspace.package] | ||
authors = ["The Noir Team <[email protected]>"] | ||
authors = ["The Noir Team <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
rust-version = "1.66" | ||
|
||
[workspace.dependencies] | ||
acir = { version = "0.9.0", path = "acir" } | ||
acir_field = { version = "0.9.0", path = "acir_field" } | ||
acir_field = { version = "0.9.0", path = "acir_field", default-features = false } | ||
stdlib = { package = "acvm_stdlib", version = "0.9.0", path = "stdlib" } | ||
|
||
hex = "0.4.2" | ||
|
@@ -19,4 +19,4 @@ num-traits = "0.2" | |
|
||
blake2 = "0.9.1" | ||
|
||
serde = { version = "1.0.136", features = ["derive"] } | ||
serde = { version = "1.0.136", features = ["derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
[package] | ||
name = "acvm_stdlib" | ||
version = "0.9.0" | ||
edition = "2021" | ||
license = "MIT" | ||
description = "The ACVM standard library." | ||
version = "0.9.0" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
acir = { version = "0.9.0", path = "../acir", features = ["bn254"] } | ||
acir.workspace = true | ||
|
||
[features] | ||
bn254 = ["acir/bn254"] | ||
bls12_381 = ["acir/bls12_381"] |