8da13f7012
* Refactor da modules Include da core module in nomos-core * Include attestation trait * Added initial approach for Da protocol * Added empty certificate trait * Added certificate dispersal method * Rename validate method to validate attestation * Clippy happy * Add validate certificate method
18 lines
462 B
TOML
18 lines
462 B
TOML
[package]
|
|
name = "nomos-kzg"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
kzg = { git = "https://github.com/sifraitech/rust-kzg.git", package = "rust-kzg-blst", features = ["parallel"] }
|
|
kzg_traits = { git = "https://github.com/sifraitech/rust-kzg.git", package = "kzg" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5.1"
|
|
|
|
[[bench]]
|
|
name = "nomos_kzg"
|
|
harness = false
|