c-kzg-4844/bindings/rust/Cargo.toml

31 lines
647 B
TOML
Raw Normal View History

[package]
name = "c-kzg"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mainnet-spec"]
mainnet-spec = []
minimal-spec = []
[dependencies]
hex = "0.4.2"
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
blst = { path = "../../blst/bindings/rust" }
[dev-dependencies]
criterion = "0.4"
glob = "0.3.1"
rand = "0.8.5"
serde_yaml = "0.9.17"
[build-dependencies]
bindgen = { git = "https://github.com/rust-lang/rust-bindgen" , rev = "0de11f0a521611ac8738b7b01d19dddaf3899e66" }
[[bench]]
name = "kzg_benches"
harness = false