-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (40 loc) · 1.21 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
[package]
name = "edcas-client"
version = "0.3.1"
edition = "2021"
readme = "README.md"
repository = "https://github.com/arne-fuchs/edcas-client"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.39.2", features = ["full"] }
json = "0.12.4"
serde_json = "1.0.121"
chrono = "0.4.38"
bus = "2.4.1"
reqwest = "0.12.5"
select = "0.6.0"
sha256 = "1.5.0"
num-format = "0.4.4"
opener = "0.7.1"
ethers = {version = "2.0.14"}
fern-logger = "0.5.0"
log = "0.4.22"
# Gui
eframe = { version = "0.28.1", features = ["persistence"] }
egui_extras = { version = "0.28.1", features = ["image"] }
image = { version = "0.25.2", features = ["png"] }
# Tui
ratatui = {version = "0.27.0", optional = true}
crossterm = {version = "0.28.1", optional = true}
# Eddn
zmq = {version = "0.10.0", optional = true}
env_logger = {version = "0.11.5", optional = true}
flate2 = { version = "1.0.31", features = ["zlib-ng"], default-features = false , optional = true}
regex = "1.10.6"
[build-dependencies]
ethers = {version = "2.0.14"}
#[cfg(feature = "evm")]
[features]
default = ["tui"]
tui = ["dep:ratatui","dep:crossterm"]
eddn = ["dep:zmq","dep:env_logger","dep:flate2"]