-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 939 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
[package]
name = "thetc-auth"
description = "Authentication and authorization tools"
version = "0.4.1"
authors = ["Brendan Molloy <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
[dependencies]
argon2 = { version = "0.4", features = ["std"] }
async-trait = "0.1.51"
chrono = { version = "0.4.19", features = ["serde"] }
deadpool = { version = "0.9.2", features = ["rt_tokio_1"], optional = true }
deadpool-redis = "0.10.0"
nova = "0.5.3"
rand = "0.8.4"
redis = { version = "0.21.4", features = ["tokio-comp"] }
secrecy = "0.8.0"
serde = { version = "1.0.127", features = ["derive"] }
serde_json = "1.0.66"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "json", "chrono", "uuid", "macros"] }
thiserror = "1.0.26"
uuid = { version = "1", features = ["serde", "v4"] }
validator = "0.15.0"
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
[features]
default = []