-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 787 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 787 Bytes
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
[package]
name = "polling_application_backend"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4.5.1"
webauthn-rs = { version = "0.5.0", features = ["danger-allow-state-serialisation"] }
mongodb = "2.8.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8.5"
argon2 = "0.5.0"
thiserror = "1.0"
log = "0.4"
env_logger = "0.10"
tokio = { version = "1", features = ["full"] }
uuid = "1.11.0"
dotenv = "0.15.0"
utoipa={version="3.3.0",features = ["actix_extras","chrono"]}
utoipa-swagger-ui = {version="3.1.3",features=["actix-web"]}
actix-cors = "0.7.0"
jsonwebtoken = "9.3.0"
actix-service = "2.0.2"
futures = "0.3.31"
chrono = {version="0.4.39",features=["serde"]}
nanoid = "0.4.0"
actix-rt = "2.10.0"
[dev-dependencies]
mockall = "0.11.3"