-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
43 lines (40 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "casper-db-utils"
version = "0.1.0-dev+casper.node.1.4.15"
authors = ["George Pisaltu <georgep@casperlabs.io>"]
edition = "2021"
description = "Utilities for working with databases of the Casper blockchain."
documentation = "https://docs.rs/casper-db-utils"
readme = "README.md"
homepage = "https://casperlabs.io"
repository = "https://github.com/casper-network/casper-db-utils"
license = "Apache-2.0"
build = "build.rs"
[dependencies]
anyhow = "1"
bincode = "1"
casper-execution-engine = "4"
casper-hashing = "1.4"
casper-node = "=1.4.15-alt"
casper-types = "2"
clap = { version = "3", features = ["cargo"] }
futures = "0.3.21"
lmdb = "0.8.0"
lmdb-sys = "0.8.0"
log = "0.4.17"
once_cell = "1"
reqwest = { version = "0.11.10", features = ["stream"] }
ringbuf = "0.2.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simplelog = "0.12.0"
tar = "0.4.38"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
zstd = "0.12"
[dev-dependencies]
once_cell = "1"
rand = "0.8.5"
tempfile = "3"
[build-dependencies]
cargo-lock = { version = "9.0", default-features = false }