-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (37 loc) · 834 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
37
38
39
[package]
name = "ambient-weather-collector"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-util = "0.3.30"
reqwest = { version = "0.12.4", features = [
"json",
"rustls-tls-webpki-roots",
"gzip",
"brotli",
] }
rust_socketio = { version = "0.6.0", features = ["async"] }
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"time",
"json",
] }
tokio = { version = "1.37.0", features = [
"rt",
"rt-multi-thread",
"macros",
"time",
"signal",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"fmt",
"env-filter",
"json",
] }