-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.09 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
[workspace]
resolver = "2"
members = [
"client",
"adapter",
"cli",
"mqtt-announcer",
]
[workspace.package]
license = "MIT"
version = "0.0.1"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.95"
ascii_table = "4.0.5"
axum = { version = "0.7.9", features = ["macros"] }
axum-extra = { version = "0.9.6", features = ["query"] }
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "~4.4.0", features = ["derive", "env"] }
clap_complete = "~4.4.10"
derive_builder = "0.20.2"
emfcamp-schedule-api = { path = "./client/" }
metrics = "0.22.3"
metrics-exporter-prometheus = { version = "0.14.0", default-features = false, features = ["http-listener"] }
reqwest = { version = "0.11.27", default-features = false, features = ["json", "rustls-tls"] }
rumqttc = "0.24.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
serde_with = "3.12.0"
termcolor = "1.4.1"
thiserror = "1.0.69"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros", "signal"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = { version = "2.5.4", features = ["serde"] }