forked from edo1z/rust-rocket-sqlx-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (21 loc) · 884 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
[package]
name = "rust-rocket-sqlx-sample"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "=0.5.0-rc.3", features = ["secrets", "json"] }
rocket_db_pools = { version = "=0.1.0-rc.3", features = ["sqlx_postgres", "deadpool_redis"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dotenv = "0.15.0"
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "serde"] }
tokio = {version = "1.30.0", features = ["full"]}
tokio-util = { version = "0.7", features = ["io"] }
async-trait = "0.1"
sqlx = { version = "0.6", default-features = false, features = ["macros", "offline", "migrate", "uuid", "chrono", "json"] }
chrono = {version = "0.4", features = ["serde"]}
mockall = "0.11"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0"