-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (42 loc) · 1.12 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
[workspace]
resolver = "2"
members = [
"dui/*",
"essential/*",
"examples/*",
"plugins/*",
"tools/*",
]
exclude = [
# "examples",
]
[workspace.package]
version = "0.0.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/NethermindEth/ice-nine"
[workspace.dependencies]
anyhow = "1.0.95"
async-trait = "0.1.85"
console-subscriber = "0.4.1"
clap = { version = "4.5.27", features = ["derive"] }
crb = { version = "0.0.27", git = "https://github.com/runtime-blocks/crb" }
derive_more = { version = "1.0.0", features = ["full"] }
dotenvy = "0.15.7"
eframe = "0.30.0"
egui = "0.30.0"
env_logger = "0.11.6"
envy = "0.4.2"
futures = "0.3.31"
ice9-core = { version = "0.0.1", path = "essential/core" }
ice9-std = { version = "0.0.1", path = "essential/std" }
log = "0.4.25"
serde = "1.0.217"
serde_json = "1.0.137"
thiserror = "2.0.11"
tokio = "1.43.0"
toml = "0.8.19"
ui9 = { version = "0.0.1", path = "dui/ui9" }
ui9-dui = { version = "0.0.1", path = "dui/ui9-dui" }
ui9-codec = { version = "0.0.1", path = "dui/ui9-codec", features = ["flex"] }
ui9-tracers = { version = "0.0.1", path = "dui/ui9-tracers" }