-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (81 loc) · 2.49 KB
/
Cargo.toml
File metadata and controls
85 lines (81 loc) · 2.49 KB
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
76
77
78
79
80
81
82
83
84
85
[package]
name = "netmito"
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
license.workspace = true
readme.workspace = true
description.workspace = true
keywords.workspace = true
categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = { version = "0.5.3", features = ["std"] }
async-compression = { version = "0.4.32", features = ["gzip", "tokio"] }
async-stream = "0.3.6"
aws-sdk-s3 = { version = "1.110", features = ["behavior-version-latest"] }
axum = { version = "0.8.6", features = ["http2"] }
axum-extra = { version = "0.12", features = ["typed-header", "query"] }
base64 = "0.22.1"
clap = { workspace = true }
clap-repl = "0.3.2"
crossfire = { version = "2.1.6", features = ["tokio"], optional = true }
derive_more = { version = "2.0.1", features = ["from"] }
dirs = "6.0.0"
figment = { version = "0.10", features = ["toml", "env"] }
futures = "0.3.31"
http-body-util = { version = "0.1.3", optional = true }
humansize = "2.1.3"
humantime-serde = "1.1.1"
indicatif = "0.18.2"
jsonwebtoken = { workspace = true }
matrix_match = "1.0.0"
md5 = { workspace = true }
nix = { version = "0.30.1", features = ["process", "signal"] }
once_cell = "1.21.3"
ouroboros = "0.18.5"
parse-size = "1.1.0"
path-clean = "1.0.1"
priority-queue = "2.7.0"
rand = "0.9.2"
redis = { workspace = true }
reqwest = { version = "0.12.24", default-features = false, features = [
"json",
"stream",
"http2",
"charset",
"rustls-tls",
"system-proxy",
] }
roxmltree = "0.21.1"
rpassword = "7.4.0"
sea-orm = { version = "1.1.17", default-features = false, features = [
"sqlx-postgres",
"macros",
"runtime-tokio-rustls",
"with-json",
"with-time",
"with-uuid",
] }
sea-orm-migration = "1.1.17"
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = "2.0.17"
time = { version = "0.3.44", features = ["serde-human-readable"] }
tokio = { workspace = true }
tokio-tar = "0.3.1"
tokio-util = { version = "0.7.16", features = ["rt"] }
tower-http = { version = "0.6.6", features = ["cors", "catch-panic"] }
tracing = { workspace = true }
tracing-appender = "0.2.3"
tracing-subscriber = { workspace = true }
url = { version = "2.5.7", features = ["serde"] }
uuid = { version = "1.18", features = ["v4"] }
[dev-dependencies]
async-once-cell = "0.5.4"
[features]
# default = ["debugging"]
debugging = ["dep:http-body-util"]
crossfire-channel = ["dep:crossfire"]