-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = ["core", "broker", "worker", "cli"]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Ricardo Leal"]
description = "ChopFlow - A distributed task queue in Rust with Python interface"
readme = "README.md"
repository = "https://github.com/ricardoleal20/ChopFlow"
license = "Apache-2.0"
[workspace.dependencies]
tokio = { version = "1.34", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["v4", "serde"] }
clap = { version = "4.4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3"
metrics = "0.21"
tonic = "0.10"
prost = "0.12"
async-trait = "0.1"
thiserror = "1.0"
config = "0.13"
futures = "0.3"