-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (32 loc) · 1005 Bytes
/
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
[package]
name = "chain"
version = "0.1.0"
authors = ["David DiMaria <[email protected]>"]
edition = "2021"
[dependencies]
bincode = "1.3.3"
blake2 = "0.10.4"
dashmap = { version = "5.4.0", features = ["rayon", "serde"] }
eth_trie = "0.1.0"
ethereum-types = "0.10.0"
futures = "0.3"
hyper = "0.14.10"
jsonrpsee = { version = "0.16.2", features = ["full", "server"] }
lazy_static = "1.4.0"
proc_macros = { path = "../proc_macros" }
rayon = "1.5.3"
rocksdb = "0.19.0"
runtime = { path = "../runtime" }
serde_json = { version = "1.0", features = ["raw_value"] }
serde = "1"
thiserror = "1.0"
tower-http = { version = "0.3.4", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"]}
types = { path = "../types" }
tokio = { version = "1.16", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
utils = { path = "../utils" }
[dev-dependencies]
lazy_static = "1.4.0"