-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (40 loc) · 1.56 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
[package]
name = "lacoctelera"
version = "0.8.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.7.0"
actix-files = "0.6.6"
actix-web = "4"
anyhow = "1.0.86"
argon2 = "0.5.3"
chrono = { version = "0.4.38", features = ["clock", "serde"] }
config = { version = "0.14.0", features = ["toml", "serde_json"], default-features = false }
mailjet_client = "0.3.0"
names = "0.14.0"
once_cell = "1.19.0"
passwords = { version = "3.1.16", features = ["crypto"] }
rand = { version = "0.8.5", features = ["std_rng"] }
regex = "1.10.5"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.204", features = ["derive"] }
serde-aux = "4.5.0"
serde_derive = "1.0.204"
serde_json = "1.0.122"
serde_urlencoded = "0.7"
sqlx = { version = "0.8.2", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "chrono", "migrate"] }
thiserror = "1.0.63"
tracing = "0.1.40"
tracing-actix-web = "0.7.11"
tracing-subscriber = { version = "0.3.18", features = ["std"] }
utoipa = { version = "4.2.3", features = ["actix_extras", "uuid"] }
utoipa-actix-web = "0.1.2"
utoipa-swagger-ui = { version = "7.1.0", features = ["actix-web"] }
uuid = { version = "1.10.0", features = ["v7", "serde", "std"] }
validator = { version = "0.16", features = ["derive"] }
[dev-dependencies]
reqwest = { version = "0.12.5", default-features = false, features = ["rustls-tls", "json"] }
rstest = { version = "0.23.0", default-features = false}
pretty_assertions = "1.4.0"
serde_yml = "0.0.12"