28 lines
670 B
TOML
28 lines
670 B
TOML
[package]
|
|
name = "zebra-state"
|
|
version = "0.1.0"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
tower = "0.3.1"
|
|
futures = "0.3.5"
|
|
lazy_static = "1.4.0"
|
|
hex = "0.4.2"
|
|
sled = "0.32.1"
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.2.21", features = ["full"] }
|
|
zebra-test = { path = "../zebra-test/" }
|
|
spandoc = "0.2"
|
|
tracing = "0.1.16"
|
|
tracing-futures = "0.2.4"
|
|
tempdir = "0.3.7"
|
|
color-eyre = "0.5"
|
|
once_cell = "1.4"
|