-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 836 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
[package]
name = "e_com"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.1", features = ["json"] }
rand = "0.8.4"
serde = { version = "1.0.64", features = ["derive"] }
postgres = { version = "0.19.1", features = ["with-chrono-0_4", "with-uuid-0_8"] }
deadpool-postgres = "0.9.0"
tokio-postgres = "0.7.2"
async-trait = "0.1.50"
bcrypt = "0.10.0"
jsonwebtoken = "7.2.0"
chrono = { version = "0.4.19", features = ["serde"] }
clokwerk = "0.3.5"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
async-recursion = "0.3.2"
reqwest = { version = "0.11.4", features = ["json"] }
openssl = "0.10.35"
tokio = { version = "1.8.1", features = ["full"] }
base64 = "0.13.0"
serde_json = "1.0.66"
regex = "1.5.4"