forked from openmina/openmina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (45 loc) · 1.37 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
[package]
name = "cli"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
[[bin]]
name = "openmina"
path = "src/main.rs"
[dependencies]
sha2 = "0.10"
hex = "0.4"
rand = "0.8.0"
serde = "1.0.158"
num_cpus = "1.0"
rayon = "1.5"
tokio = { version = "1.26.0" }
libp2p-identity = { version = "=0.2.7", features = ["peerid"] }
redux = { workspace = true }
ledger = { workspace = true }
mina-p2p-messages = { workspace = true }
vrf = { workspace = true }
console = "0.15.5"
clap = { version = "4.3", features = [ "derive", "env" ] }
time = { version = "0.3", features = ["formatting", "macros", "parsing"] }
anyhow = "1.0.81"
reqwest = { version = "0.11.24", features = ["blocking"] }
openmina-core = { path = "../core" }
node = { path = "../node", features = ["replay"] }
openmina-node-native = { path = "../node/native" }
bytes = "1.4.0"
tracing = "0.1.37"
nix = { version = "0.26.2", features = ["signal"] }
shellexpand = "3.1.0"
dialoguer = "0.10.4"
serde_json = "1.0.107"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
redux = { workspace = true, features=["serializable_callbacks"] }
[dev-dependencies]
tempfile = "3.8.0"
[features]
default = ["p2p-libp2p"]
unsafe-signal-handlers = []
p2p-libp2p = ["node/p2p-libp2p", "openmina-node-native/p2p-libp2p"]
p2p-webrtc = ["node/p2p-webrtc", "openmina-node-native/p2p-webrtc"]
fuzzing = ["node/fuzzing", "openmina-core/fuzzing"]