-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (47 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "health-ingest"
version = "0.1.0"
edition = "2021"
[dependencies]
poem = { version = "3.0.4", git = "https://github.com/poem-web/poem", branch = "master", features = [
"rustls",
"sse",
] }
poem-openapi = { version = "5", git = "https://github.com/poem-web/poem", branch = "master", features = [
"chrono",
"uuid",
"sqlx",
"url",
"email",
"email_address",
"redoc",
"static-files",
] }
chrono = { version = "0.4.39", features = ["serde", "now"] }
anyhow = "1.0.93"
dotenvy = "0.15.7"
regex = "1.11.1"
reqwest = { version = "0.12.5", features = [
"rustls-tls",
# Add back the default features excluding native-tls
"charset",
"http2",
"macos-system-configuration",
], default-features = false }
rustls = "0.23.19"
serde = "1.0.204"
serde_json = { version = "1.0", features = ["raw_value"] }
serde_repr = "0.1.19"
serde_with = { version = "3.9.0", features = ["json", "chrono"] }
thiserror = "2.0.3"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = "0.3.18"
url = { version = "2.5.2", features = ["serde"] }
async-std = { version = "1.13.0", features = ["attributes", "tokio1"] }
futures = "0.3.31"
figment = { version = "0", features = ["env", "serde_json"] }
influxdb2 = "0.3"
influxdb2-structmap = "0.2"
influxdb2-derive = "0.1.1"
num-traits = "0.2"
influxdb = "0.7.2"