-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
22 lines (19 loc) · 832 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
[package]
name = "amp-sensor-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
governor = "0.6.3"
log = "0.4.22"
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"], default-features = false }
rocket = { version = "0.5.1", features = ["json"], default-features = false }
rocket_db_pools = { version = "0.2.0", features = ["sqlx_sqlite"] }
rocket-governor = { version = "0.2.0-rc.3", features = ["limit_info", "logger"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.117"
sqlx = { version = "=0.7.3", features = ["chrono", "macros", "migrate"], default-features = false }
chrono = { version = "0.4.38", features = ["serde"] }
anyhow = "1.0.86"
poloto = "19.1.2"
chrono-tz = "0.9.0"