-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (27 loc) · 846 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
[package]
name = "rust_stack_example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
pretty_env_logger = "0.4.0"
error-stack = "0.3.1"
axum = "0.6.12"
axum-sqlx-tx = { version = "0.5.0", features = ["postgres"]}
tokio = { version = "1.26.0", features=["macros"] }
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "time"] }
time = { version = "0.3.20", features = ["serde-human-readable"] }
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
reqwest = { version = "0.11.15", features = ["blocking", "json"] }
csv = "1.2.1"
[dev-dependencies]
criterion = "0.4.0"
rayon = "1.7.0"
[[bench]]
name = "requests_bench"
harness = false
[profile.release]
lto = true
codegen-units = 1