mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-18 04:13:00 +00:00
* Add peerdas KZG library and use it for data column construction and cell kzg verification (#5701, #5941, #6118, #6179) Co-authored-by: kevaundray <kevtheappdev@gmail.com> * Update `rust_eth_kzg` crate to published version. * Update kzg metrics buckets. * Merge branch 'unstable' into peerdas-kzg * Update KZG version to fix windows mem allocation. * Refactor common logic from build sidecar and reconstruction. Remove unnecessary `needless_lifetimes`. Co-authored-by: realbigsean <sean@sigmaprime.io> * Copy existing trusted setup into `PeerDASTrustedSetup` for consistency and maintain `--trusted-setup` functionality. * Merge branch 'unstable' into peerdas-kzg * Merge branch 'peerdas-kzg' of github.com:jimmygchen/lighthouse into peerdas-kzg * Merge branch 'unstable' into peerdas-kzg * Merge branch 'unstable' into peerdas-kzg * Load PeerDAS KZG only if PeerDAS is enabled.
30 lines
789 B
TOML
30 lines
789 B
TOML
[package]
|
|
name = "kzg"
|
|
version = "0.1.0"
|
|
authors = ["Pawan Dhananjay <pawandhananjay@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
derivative = { workspace = true }
|
|
serde = { workspace = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
hex = { workspace = true }
|
|
ethereum_hashing = { workspace = true }
|
|
c-kzg = { workspace = true }
|
|
rust_eth_kzg = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
eth2_network_config = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|