18 lines
363 B
TOML
18 lines
363 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 = "1.0.188"
|
||
|
tokio = { version = "1.32.0", features = ["full"] }
|
||
|
toml = "0.8.2"
|
||
|
humantime = "2.1.0"
|
||
|
|
||
|
[dependencies.domo_proto]
|
||
|
path = "../domo_proto"
|