-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
75 lines (69 loc) · 1.22 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
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
members = [
"bin",
"api",
"service",
"middleware-fn",
"utils",
"configs",
"db",
"migration",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
codegen-units = 1
debug = false
lto = true
opt-level = "z" # Optimize for size.
panic = 'abort'
# strip = "symbols" # none(false) debuginfo symbols(true).
[workspace.package]
authors = ["lingdu <waong2005@126.com>"]
edition = "2021"
homepage = "https://314.iu1314.top"
license = "Apache-2.0"
publish = false
repository = ""
[workspace.dependencies]
# poem
poem = "1"
#
anyhow = "1"
bytes = "1"
futures = "0.3"
async-stream = "0.3"
chrono = "0"
headers = "0.3"
jsonwebtoken = "8"
once_cell = "1"
# 用于生成可排序的唯一id
scru128 = "2"
serde = "1"
serde_json = "1"
tokio = "1"
tokio-stream = '0'
# "tracing"
toml = "0.5"
# tracing
time = "0.3"
tracing = "0.1"
tracing-appender = "0.2"
# tracing-log = "0.1"
tracing-subscriber = "0.3"
# 计划任务
delay_timer = "0"
reqwest = "0"
user-agent-parser = "0.3"
# 随机数
md5 = "0.7"
rand = "0.8"
# 系统信息
sysinfo = "0"
# 验证码
captcha_rust = "0.1.3"
# hashMap
ahash = '0'
# skyTable 可选依赖
skytable = "0"
# sea-orm
sea-orm = "0"