mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-14 20:15:17 +00:00
506d234562
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
* Add trait. * Update merkle tree trait. * Use NodeManager. * fix. * Use LRU for cache. * fix clippy. * Save layer size. * Initialize LogManager with NodeManager. * Fix. * Fix test. * fix.
17 lines
422 B
TOML
17 lines
422 B
TOML
[package]
|
|
name = "append_merkle"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.58", features = ["backtrace"] }
|
|
ethereum-types = "0.14"
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
|
eth2_ssz = "0.4.0"
|
|
eth2_ssz_derive = "0.3.0"
|
|
serde = { version = "1.0.137", features = ["derive"] }
|
|
lazy_static = "1.4.0"
|
|
tracing = "0.1.36"
|
|
once_cell = "1.19.0"
|
|
itertools = "0.13.0"
|
|
lru = "0.12.5" |