-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 888 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
33
34
35
36
[package]
name = "pro_selection"
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", features = ["json"] }
rocket_sync_db_pools = { version = "0.1.0", features = [
"diesel_postgres_pool",
] }
# rocket_okapi = "0.5"
tokio = "1.35.1"
tokio-test = "0.4.3"
diesel = { version = "2.1.4", features = ["postgres", "uuid", "r2d2"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.44"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
dotenv = "0.15.0"
swagger = "6.3.0"
swagger-ui = "0.1.5"
chrono = "0.4.19"
schemars = "0.8.13"
okapi = { version = "0.4.0", features = ["derive_json_schema"] }
log = "0.4.20"
# jwt
jwt = "0.16"
hmac = "0.12.1"
sha2 = "0.10.8"