yotei/yotei-nodes/Cargo.toml
xqtc c4c2e7ae5b
Some checks failed
/ build (push) Failing after 1m42s
/ clippy (push) Failing after 1m47s
Specs
2024-10-01 17:11:11 +02:00

47 lines
994 B
TOML

[package]
authors = ["xqtc"]
description = "Distributed computing with abstract data"
name = "yotei"
license = "BSD-3-Clause"
readme = "./README.md"
repository = "https://git.heroin.trade/xqtc/yotei"
version = "0.1.1"
edition = "2021"
[dependencies]
pretty_env_logger = "0.5"
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"]}
serde = { version = "1.0", features = ["derive"] }
nix = { version = "0.29", features = ["net"] }
serde_json = "1.0"
anyhow = "1.0"
lz4_flex = "0.11.3"
uuid = "1.10"
toml = "0.8.19"
lazy_static = "1.5.0"
log = "0.4.22"
bincode = "1.3.3"
clap = { version = "4.5.16", features = ["derive"] }
bson = "2.11.0"
tonic = "0.12.2"
tonic-reflection = "0.12.2"
prost = "0.13.2"
prost-types = "0.13.2"
colorful = "0.3.2"
sysinfo = "0.31.4"
ethtool = "0.2.5"
futures = "0.3.30"
netlink-packet-generic = "0.3.3"
[build-dependencies]
tonic-build = "0.12.2"
[[bin]]
name = "head-node"
path = "src/head.rs"
[[bin]]
name = "worker-node"
path = "src/worker.rs"