-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
63 lines (61 loc) · 1.34 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "yiirs"
version = "1.3.0"
edition = "2021"
description = "API framework for Rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full"] }
clap = { version = "4.5", features = ["derive"] }
hostname = "^0.4"
anyhow = "1.0"
rand = "0.8"
const-hex = "1.13"
openssl = { version = "0.10", features = ["vendored"] }
digest = "0.10"
md-5 = "0.10"
sha1 = "0.10"
sha2 = "0.10"
hmac = "0.12"
base64 = "0.22"
bcrypt = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
config = "0.14"
time = { version = "0.3", features = [
"macros",
"local-offset",
"formatting",
"parsing",
] }
mobc = "0.8"
r2d2 = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
tracing-appender = "0.2"
hyper = "1.0"
http = "1.0"
http-body = "1.0"
http-body-util = "0.1"
salvo = { version = "0.73", features = [
"cors",
"http1",
"http2",
"http2-cleartext",
] }
multimap = "0.10"
nanoid = "0.4"
validator = { version = "0.16", features = ["derive"] }
sea-orm = { version = "1.1", features = [
"sqlx-mysql",
"runtime-tokio-rustls",
"macros",
"debug-print",
] }
redis = { version = "0.27", features = [
"r2d2",
"cluster",
"cluster-async",
"tokio-comp",
] }