-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.33 KB
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
[package]
name = "node-lib"
license.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
blockprod = { path = "../blockprod" }
chainstate = { path = "../chainstate" }
chainstate-launcher = { path = "../chainstate/launcher" }
common = { path = "../common" }
logging = { path = "../logging" }
mempool = { path = "../mempool" }
p2p = { path = "../p2p" }
rpc = { path = "../rpc" }
storage-lmdb = { path = "../storage/lmdb" }
subsystem = { path = "../subsystem" }
test-rpc-functions = { path = "../test-rpc-functions" }
utils = { path = "../utils" }
utils-networking = { path = "../utils/networking" }
anyhow.workspace = true
clap = { workspace = true, features = ["derive"] }
csv.workspace = true
directories.workspace = true
file-rotate.workspace = true
fs4.workspace = true
jsonrpsee = { workspace = true, features = ["macros"] }
paste.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_with.workspace = true
thiserror.workspace = true
tokio = { workspace = true, default-features = false }
toml.workspace = true
[dev-dependencies]
crypto = { path = "../crypto" }
randomness = { path = "../randomness" }
ctor.workspace = true
rstest.workspace = true
tempfile.workspace = true