-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 996 Bytes
/
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
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
default-run = "backend"
[[bin]]
name = "backend"
path = "src/main.rs"
[[bin]]
name = "e2e"
path = "src/e2e/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["ws", "query"] }
btleplug = "0.11.7"
chrono = "0.4.39"
dotenvy = "0.15.7"
local-ip-address = "0.6.3"
mdns-sd = "0.13.2"
reqwest = { version = "0.12.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
uuid = "1.12.1"
dbus = { version = "0.9.7", features = ["vendored"] }
rand = "0.9.0"
unix-utils = { path = "./unix-utils" }
crc32fast = "1.4.2"