-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
38 lines (36 loc) · 1.06 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
[package]
name = "salvo-admin"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
salvo = { version = "0.73.0", features = [
"serve-static",
"oapi",
"logging",
"catch-panic",
"websocket",
"session",
] }
captcha = "0.0.9"
md5 = "0.7.0"
jsonwebtoken = "8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rbs = { version = "4.5" }
rbatis = { version = "4.5", features = ["debug_mode"] }
rbdc-mysql = { version = "4.5" }
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1.14", features = ["net"] }
futures-util = "0.3"
once_cell = "1.16.0"
uuid = { version = "1.3.2", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
] }
redis = { version = "0.23.0", features = ["tokio-comp"] }
sysinfo = "0.30.1"
byte-unit = "5.1.2"
tracing = "0.1"
tracing-subscriber = "0.3"