-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.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.11"
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.7.5"
axum-client-ip = "0.6.1"
bytes = "1.8.0"
bytesize = { version = "1.3.0", features = ["serde"] }
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["derive"] }
colored = "2.1.0"
config = "0.14.1"
crossterm = "0.28.1"
futures = "0.3.31"
glob = "0.3.1"
hex = "0.4.3"
home = "0.5.9"
http = "1.1.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.8", default-features = false, features = [
"rustls-tls",
"json",
] }
rust-embed = { version = "8.5.0", features = ["compression", "mime-guess"] }
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
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.42"
tempfile = "3.13.0"
time = "0.3.36"
tokio = { version = "1.41.0", features = [
"macros",
"rt",
"rt-multi-thread",
"net",
"signal",
"fs",
] }
tokio-cron-scheduler = "0.13.0"
tower = { version = "0.5.1", features = ["timeout"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["local-time"] }
unicode-width = "0.2.0"
unix_mode = "0.1.4"
zstd = "0.13.2"
[profile.release]
codegen-units = 1
lto = true