-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (35 loc) · 852 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
31
32
33
34
35
36
[package]
name = "rust-class-web"
version = "0.1.2"
edition = "2021"
authors = ["smh000809 <[email protected]>"]
[dependencies]
actix-files = "0.6.6"
actix-multipart = "0.7.2"
actix-web = { version = "4.9.0", features = ["rustls-0_23"] }
env_logger = "0.11.6"
futures = "0.3.31"
log = "0.4.22"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
derive_more = { version = "1.0.0", features = ["full"] }
actix-cors = "0.7.0"
chrono = { version = "0.4.39", features = ["serde"] }
uuid = { version = "1.11.0", features = [
"fast-rng",
"macro-diagnostics",
"serde",
"v4",
] }
sqlx = { version = "0.8.2", features = [
"chrono",
"mysql",
"runtime-async-std-native-tls",
"sqlite",
"uuid",
] }
validator = "0.19.0"
anyhow = "1.0.95"
toml = "0.8.19"
rustls-pemfile = "2.2.0"
rustls = "0.23.20"