[package]
edition = "2021"
name = "light-indexed-array"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of indexed (and concurrent) Merkle tree in Rust"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Lightprotocol/light-protocol"
[lib]
name = "light_indexed_array"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.light-hasher]
version = "6.0.0"
features = ["poseidon"]
default-features = false
[dependencies.num-bigint]
version = "0.4.6"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.light-hasher]
version = "6.0.0"
features = [
"keccak",
"sha256",
"poseidon",
]
default-features = false
[dev-dependencies.num-bigint]
version = "0.4.6"
features = ["rand"]
[dev-dependencies.rand]
version = "0.8.5"