domo/domo_node/Cargo.toml

23 lines
485 B
TOML
Raw Normal View History

2023-10-15 18:06:23 +02:00
[package]
name = "domo_node"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fern = "0.6.2"
log = "0.4.20"
2023-10-15 18:06:25 +02:00
serde = { version = "1.0.188", features = ["serde_derive"] }
2023-10-15 18:06:23 +02:00
tokio = { version = "1.32.0", features = ["full"] }
toml = "0.8.2"
humantime = "2.1.0"
2023-10-15 18:06:25 +02:00
futures = "0.3.28"
hex = "0.4.3"
2023-10-15 18:06:23 +02:00
[dependencies.domo_proto]
path = "../domo_proto"
2023-11-05 20:52:42 +01:00
[dependencies.domo_lib]
path = "../domo_lib"