-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.16 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
37
38
39
40
41
42
43
44
45
[package]
name = "taille-auth"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
validator = "0.19"
validator_derive = "0.19"
bcrypt = "0.16"
# scrypt = "0.11.0"
jsonwebtoken = "9.3.0"
actix-web-lab = "0.23.0"
actix-governor = "0.8.0"
actix-web-httpauth = "0.8.2"
subtle = "2.6.1"
nanoid = "0.4.0"
thiserror = "2.0.11"
rayon = "1.10.0"
chrono = { version = "0.4.39", features = ["serde"] }
fake = "3.1.0"
flume = "0.11.1"
async-trait = "0.1.85"
utoipa = "5.3.1"
utoipa-scalar = { version = "0.3.0", features = ["actix-web"] }
aws-config = { version = "1.5.13", features = ["behavior-version-latest"], optional = true }
aws-sdk-dynamodb = { version = "1.59.0", optional = true }
serde_dynamo = { version = "4.2.14", features = ["aws-sdk-dynamodb+1"], optional = true }
mongodb = { version = "3.1.1", optional = true }
mockall = "0.13.1"
[dev-dependencies]
actix-rt = "2.10.0"
once_cell = "1.20.2"
reqwest = { version = "0.12.12", features = ["json"] }
[features]
default = ["mongodb"]
dynamodb = ["dep:aws-config", "dep:aws-sdk-dynamodb", "dep:serde_dynamo"]
mongodb = ["dep:mongodb"]
in-memory = []