Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
fix: add default flag to acvm_stdlib (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Apr 28, 2023
1 parent 32ee014 commit 83b6fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.66"
[workspace.dependencies]
acir = { version = "0.10.1", path = "acir", default-features = false }
acir_field = { version = "0.10.1", path = "acir_field", default-features = false }
stdlib = { package = "acvm_stdlib", version = "0.10.1", path = "stdlib" }
stdlib = { package = "acvm_stdlib", version = "0.10.1", path = "stdlib", default-features = false }

hex = "0.4.2"
num-bigint = "0.4"
Expand Down
1 change: 1 addition & 0 deletions stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ rust-version.workspace = true
acir.workspace = true

[features]
default = ["bn254"]
bn254 = ["acir/bn254"]
bls12_381 = ["acir/bls12_381"]

0 comments on commit 83b6fa8

Please sign in to comment.