-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.13 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
[package]
name = "rust-rest-api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.3"
actix-threadpool = "0.3.3"
anyhow = "1.0.71"
argon2 = "0.5.0"
chrono = { version = "0.4.22", features = ["serde"] }
diesel_migrations = "2.0.0"
diesel = { version = "2.0.0", features = ["postgres", "r2d2", "chrono", "serde_json", "uuid"] }
diesel-async = { version = "0.4.1", features = ["postgres", "deadpool"] }
dotenv = "0.15.0"
env_logger = "0.11.3"
jsonwebtoken = "9.2.0"
rand_core = { version = "0.6.4", features = ["std"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.96"
sqlx = { version = "0.7.4", features = ["runtime-async-std-native-tls", "postgres", "chrono", "uuid"] }
uuid = { version = "1.3.2", features = ["serde", "v4"] }
async-trait = "0.1.58"
testcontainers = { version = "0.14.0" }
log = "0.4"
futures-util = "0.3.26"
jwt = "0.16.0"
tracing = "0.1.37"
scrypt = "0.11.0"
log4rs = "1.2.0"
thiserror = "1.0.40"
validator = { version = "0.17.0", features = ["derive"]}
base64 = "0.22.0"