-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
68 lines (66 loc) · 1.62 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
[package]
name = "diving"
version = "0.6.13"
authors = ["Tree Xie <[email protected]>"]
edition = "2021"
keywords = ["diving", "image", "dive"]
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.8.1"
axum-client-ip = "0.7.0"
bytes = "1.9.0"
bytesize = { version = "1.3.0", features = ["serde"] }
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive"] }
colored = "3.0.0"
config = "0.15.6"
crossterm = "0.28.1"
futures = "0.3.31"
glob = "0.3.2"
hex = "0.4.3"
home = "0.5.11"
http = "1.2.0"
humantime = "2.1.0"
libflate = "2.1.0"
lru = "0.12.5"
mime = "0.3.17"
mime_guess = "2.0.5"
nanoid = "0.4.0"
once_cell = "1.20.2"
pad = "0.1.6"
ratatui = "0.29.0"
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = [
"rustls-tls",
"json",
] }
rust-embed = { version = "8.5.0", features = ["compression", "mime-guess"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
serde_repr = "0.1.19"
signal-hook = { version = "0.3.17", default-features = false }
signal-hook-registry = "1.4.2"
snafu = "0.8.5"
substring = "1.4.5"
tar = "0.4.43"
tempfile = "3.15.0"
time = "0.3.37"
tokio = { version = "1.43.0", features = [
"macros",
"rt",
"rt-multi-thread",
"net",
"signal",
"fs",
] }
tokio-cron-scheduler = "0.13.0"
tower = { version = "0.5.2", features = ["timeout"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["local-time"] }
unicode-width = "0.2.0"
unix_mode = "0.1.4"
zstd = "0.13.2"
[profile.release]
codegen-units = 1
lto = true