-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (64 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "casperlabs-node"
version = "0.1.0"
authors = ["Marc Brinkmann <marc@casperlabs.io>", "Fraser Hutchison <fraser@casperlabs.io>"]
edition = "2018"
description = "The CasperLabs blockchain node"
documentation = "https://docs.rs/casperlabs-node"
readme = "README.md"
homepage = "https://casperlabs.io"
repository = "https://github.com/CasperLabs/casperlabs-node"
license-file = "LICENSE"
publish = false # Prevent accidental `cargo publish` for now.
default-run = "casperlabs-node"
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.28"
bincode = "1.2.1"
blake2 = { version = "0.8.1", default-features = false }
bytes = "0.5.4"
derive_more = "0.99.7"
directories = "2.0.2"
ed25519-dalek = { version = "1.0.0-pre.3", default-features = false, features = ["rand", "serde", "u64_backend"] }
either = "1.5.3"
enum-iterator = "0.6.0"
futures = "0.3.5"
getrandom = "0.1.14"
hex = "0.4.2"
hex_fmt = "0.3.0"
http = "0.2.1"
libc = "0.2.71"
lmdb = "0.8.0"
maplit = "1.0.2"
openssl = "0.10.29"
rand = "0.7.3"
rand_chacha = "0.2.2"
reqwest = "0.10.6"
rmp-serde = "0.14.3"
serde = { version = "1.0.110", features = ["derive"] }
serde-big-array = "0.3.0"
serde_json = "1.0.55"
smallvec = "1.4.0"
structopt = "0.3.14"
tempfile = "3.1.0"
thiserror = "1.0.18"
tokio = { version = "0.2.20", features = ["macros", "rt-threaded", "sync", "tcp", "time", "blocking"] }
tokio-openssl = "0.4.0"
tokio-serde = { version = "0.6.1", features = ["messagepack"] }
tokio-util = { version = "0.3.1", features = ["codec"] }
toml = "0.5.6"
tracing = "0.1.14"
tracing-subscriber = "0.2.5"
warp = "0.2.3"
[[bin]]
name = "casperlabs-node"
path = "src/apps/node/main.rs"
bench = false
doctest = false
test = false
[[bin]]
name = "casperlabs-client"
path = "src/apps/client/main.rs"
bench = false
doctest = false
test = false