-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (35 loc) · 974 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
37
38
[package]
name = "authentication_server_rocket"
version = "0.1.0"
edition = "2018"
license = "Apache-2.0"
# 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 = ["secrets", "tls", "json"] }
rocket-multipart-form-data = "0.10.0"
rocket-download-response = "0.5"
async-std = "1.10.0"
serde = { version = "1.0", features = ["derive"] }
base64 = "0.13"
serde_json = "1.0.64"
dotenv = "0.15.0"
log = "0.4"
validator = "0.10"
validator_derive = "0.10"
jsonwebtoken = "7.1"
rust-argon2 = "0.8"
chrono = { version = "0.4.19", features = ["serde"] }
eyre = "0.4"
color-eyre = "0.3"
tracing = "0.1"
tracing-futures = "0.2"
tracing-log = "0.1.2"
tracing-subscriber = "0.2"
futures = { version = "0.3", features = ["compat"] }
blake3 = "1.0.0"
strum = "0.22"
strum_macros = "0.22"
[dependencies.mongodb]
version = "1.2.2"
default-features = false
features = ["async-std-runtime"]