-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 748 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "rust_database_for_api"
version = "0.1.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", features = ["json"] }
rocket_sync_db_pools = { version = "0.1.0-rc", features = ["diesel_postgres_pool"]}
rocket_db_pools = { version = "0.1.0-rc", features = ["deadpool_redis"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diesel = { version = "2.0", features = ["postgres", "chrono"] }
chrono = {version = "0.4", features = ["serde"] }
log = "0.4"
clap = "4.2"
argon2 = "0.5"
rand = "0.8"
tera = "1"
lettre = "0.10"
[dev-dependencies]
reqwest = { version = "0.11", features = ["json", "blocking"]}