-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 712 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 712 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
[workspace]
resolver = "2"
members = [
"crates/common",
"crates/server",
"crates/agent",
]
[workspace.package]
version = "1.0.0-alpha.6"
edition = "2024"
license = "AGPL-3.0-or-later"
repository = "https://github.com/ZingerLittleBee/ServerBee"
[workspace.dependencies]
serverbee-common = { path = "crates/common", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "2"
anyhow = "1"
chrono-tz = "0.10"