Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
This commit fixes noir-lang#403.

No compilation features were provided so the user wasn't able to compile this crate successfully.

Now the user could compile with the bn254 feature or the bls12_381 feature.
  • Loading branch information
ilitteri committed Oct 24, 2022
1 parent 20048e7 commit 59faf5c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/noirc_frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ thiserror = "1.0.21"
pathdiff = "0.2"
smol_str = "0.1.17"
rustc-hash = "1.1.0"

[features]
bn254 = ["acvm/bn254"]
bls12_381 = ["acvm/bls12_381"]

0 comments on commit 59faf5c

Please sign in to comment.