-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (32 loc) · 1.03 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
[package]
name = "account-services"
version = "1.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = { version = "1.13.0", features = ["attributes", "tokio1"] }
futures-util = "0.3.31"
regex = "1.11.1"
dashmap = "6.1.0"
lazy_static = "1.5.0"
once_cell = "1.20.2"
dotenvy = "0.15.7"
env_logger = "0.11.5"
log = "0.4.22"
aes-gcm = "0.10.3"
rand = "0.8.5"
actix-web = "4.9.0"
actix-cors = "0.7.0"
actix-files = "0.6.6"
actix-extensible-rate-limit = "0.4.0"
reqwest = "0.12.9"
serde = "1.0.215"
serde_json = "1.0.133"
mongodb = "3.1.0"
jsonwebtoken = "9.3.0"
ulid = "1.1.3"
lettre = { version = "0.11.11", features = ["async-std1", "async-std1-rustls-tls", "builder", "smtp-transport"], default-features = false }
totp-rs = { version = "5.6.0", features = ["qr"] }
opaque-ke = "=3.0.0-pre.5"
webauthn-rs = { git = "https://github.com/infiniwave/webauthn-rs.git", features = ["conditional-ui", "attestation", "resident-key-support"] }
base64 = "0.22.1"