yotei/yotei-nodes/Cargo.toml

47 lines
994 B
TOML
Raw Normal View History

2024-09-03 22:05:11 +02:00
[package]
authors = ["xqtc"]
description = "Distributed computing with abstract data"
2024-09-11 19:10:12 +02:00
name = "yotei"
2024-09-11 20:55:16 +02:00
license = "BSD-3-Clause"
readme = "./README.md"
repository = "https://git.heroin.trade/xqtc/yotei"
2024-09-11 21:03:54 +02:00
version = "0.1.1"
2024-09-03 22:05:11 +02:00
edition = "2021"
[dependencies]
pretty_env_logger = "0.5"
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"]}
2024-09-03 22:05:11 +02:00
serde = { version = "1.0", features = ["derive"] }
2024-10-01 17:11:11 +02:00
nix = { version = "0.29", features = ["net"] }
2024-09-03 22:05:11 +02:00
serde_json = "1.0"
anyhow = "1.0"
lz4_flex = "0.11.3"
uuid = "1.10"
2024-09-03 22:05:11 +02:00
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"
2024-09-09 17:11:37 +02:00
tonic-reflection = "0.12.2"
prost = "0.13.2"
prost-types = "0.13.2"
2024-09-10 17:01:55 +02:00
colorful = "0.3.2"
2024-09-30 20:17:12 +02:00
sysinfo = "0.31.4"
2024-10-01 17:11:11 +02:00
ethtool = "0.2.5"
futures = "0.3.30"
netlink-packet-generic = "0.3.3"
[build-dependencies]
tonic-build = "0.12.2"
2024-09-13 13:17:41 +02:00
[[bin]]
name = "head-node"
path = "src/head.rs"
[[bin]]
2024-09-11 20:55:16 +02:00
name = "worker-node"
path = "src/worker.rs"