2024-09-03 22:05:11 +02:00
|
|
|
[package]
|
|
|
|
authors = ["xqtc"]
|
|
|
|
description = "Distributed computing with abstract data"
|
2024-09-10 17:01:55 +02:00
|
|
|
name = "uwusched"
|
2024-09-03 22:05:11 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pretty_env_logger = "0.5"
|
2024-09-05 16:12:58 +02:00
|
|
|
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"]}
|
2024-09-03 22:05:11 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
anyhow = "1.0"
|
|
|
|
lz4_flex = "0.11.3"
|
2024-09-09 18:19:19 +02:00
|
|
|
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"] }
|
2024-09-05 16:12:58 +02:00
|
|
|
bson = "2.11.0"
|
|
|
|
tonic = "0.12.2"
|
2024-09-09 17:11:37 +02:00
|
|
|
tonic-reflection = "0.12.2"
|
2024-09-05 16:12:58 +02:00
|
|
|
prost = "0.13.2"
|
|
|
|
prost-types = "0.13.2"
|
2024-09-10 17:01:55 +02:00
|
|
|
colorful = "0.3.2"
|
2024-09-05 16:12:58 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tonic-build = "0.12.2"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "head-node"
|
|
|
|
path = "src/head.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "compute-node"
|
|
|
|
path = "src/compute.rs"
|