mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2024-12-22 11:41:28 +00:00
283ec8cf24
* use workspace deps in kzg crate * delete unused blobs dp path field * full match on fork name in engine api get payload v3 * only accept v3 payloads on get payload v3 endpoint in mock el * remove FIXMEs related to merge transition tests * move static tx to test utils * default max_per_epoch_activation_churn_limit to mainnet value * remove unnecessary async * remove comment * use task executor in `blob_sidecars` endpoint
26 lines
1.0 KiB
TOML
26 lines
1.0 KiB
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 = { git = "https://github.com/ethereum/c-kzg-4844", rev = "f5f6f863d475847876a2bd5ee252058d37c3a15d" , features = ["mainnet-spec", "serde"]}
|
|
c_kzg_min = { package = "c-kzg", git = "https://github.com/ethereum//c-kzg-4844", rev = "f5f6f863d475847876a2bd5ee252058d37c3a15d", features = ["minimal-spec", "serde"], optional = true }
|
|
|
|
[features]
|
|
# TODO(deneb): enabled by default for convenience, would need more cfg magic to disable
|
|
default = ["c_kzg_min"]
|
|
minimal-spec = ["c_kzg_min"]
|