-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (35 loc) · 931 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
35
36
37
[workspace]
resolver = "2"
members = [
"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"
clap = { version = "4.5.26", features = ["derive"] }
crb = { version = "0.0.27", git = "https://github.com/runtime-blocks/crb" }
derive_more = "1.0.0"
dotenvy = "0.15.7"
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.135"
tokio = "1.43.0"
toml = "0.8.19"
uiio = { version = "0.0.3", git = "https://github.com/runtime-blocks/uiio" }
uiio-element = { version = "0.0.3", git = "https://github.com/runtime-blocks/uiio" }