forked from v4zha/Vaderboard-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (43 loc) · 1.02 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
46
[package]
name = "vader-admin"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
actix-web = { version = "^4.4" }
sqlx = { version = "^0.7", features = [
"sqlite",
"runtime-tokio",
"tls-native-tls",
"chrono",
] }
serde = { version = "^1.0", features = ['derive'] }
serde_json = "^1.0"
serde_repr = "^0.1"
log = "^0.4"
env_logger = "^0.10"
dotenvy = "^0.15"
uuid = { version = "^1.4", features = ["v4", "serde"] }
futures = "^0.3"
# erased-serde = "0.3"
tokio = { version = "^1.32", features = ["full"] }
actix-session = { version = "^0.7", features = ["cookie-session"] }
actix-files = "^0.6"
num_cpus = "^1.16"
bcrypt = "^0.15"
actix-web-actors = "^4.2"
actix = "0.13"
actix-cors = "0.6"
chrono = "^0.4"
mimalloc = { version = "^0.1", default-features = false }
[build-dependencies]
sqlx = { version = "^0.7", features = [
"sqlite",
"runtime-tokio",
"tls-native-tls",
] }
tokio = { version = "^1.29", features = ["full"] }
dotenvy = "^0.15"
bcrypt = "^0.15"
[profile.dev.package.sqlx-macros]
opt-level = 3