Skip to content

Commit

Permalink
fix: flag build binaries for std only
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWOLAND committed Aug 23, 2024
1 parent 2b3f998 commit 8a138e6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ once_cell = { version = "1.19.0", default-features = false, features = [
"race",
"alloc",
] }
bls12_381 = "0.8.0"
bls12_381 = { version = "0.8.0", no-default-features = true }

[dev-dependencies]
glob = "0.3.1"

[features]
default = ["std", "serde"]
default = ["serde"]
serde = ["dep:serde", "dep:serde_yaml", "dep:serde_derive"]
kzg-test = ['std', 'cache']
std = ["serde/std"]
Expand All @@ -34,3 +34,4 @@ cache = []
[[bin]]
name = "build_binaries"
path = "scripts/build_binaries.rs"
required-features = ["std"]

0 comments on commit 8a138e6

Please sign in to comment.