22 lines
485 B
TOML
22 lines
485 B
TOML
[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"
|
|
serde = { version = "1.0.188", features = ["serde_derive"] }
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
toml = "0.8.2"
|
|
humantime = "2.1.0"
|
|
futures = "0.3.28"
|
|
hex = "0.4.3"
|
|
|
|
[dependencies.domo_proto]
|
|
path = "../domo_proto"
|
|
|
|
[dependencies.domo_lib]
|
|
path = "../domo_lib"
|