This repository was archived by the owner on Feb 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (95 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
99 lines (95 loc) · 2.45 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "mxlite"
version = "0.2.0"
edition = "2024"
license = "MPL-2.0"
[dependencies]
anyhow = "1.0.98"
base16ct = "0.2.0"
base64 = "0.22.1"
colored = "3.0.0"
digest = "0.10.7"
futures-util = "0.3.31"
log = { version = "0.4.27", features = ["std"] }
md-5 = "0.10.6"
reqwest = { version = "0.12.15", default-features = false, features = [
"rustls-tls",
"rustls-tls-webpki-roots",
"rustls-tls-native-roots",
"gzip",
"brotli",
"zstd",
"deflate",
"stream",
] }
serde = { version = "1.0.206", features = ["derive"] }
serde_json = "1.0.124"
sha1 = "0.10.6"
sha2 = "0.10.8"
sha3 = "0.10.8"
thiserror = "2.0.12"
time = { version = "0.3.41", features = [
"formatting",
"local-offset",
"macros",
] }
tokio = { version = "1.44.1", features = [
"fs",
"io-util",
"macros",
"sync",
"process",
"rt-multi-thread",
"signal",
"rt",
] }
url = { version = "2.5.4", features = ["serde"] }
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
mlua = { version = "0.10.3", features = [
"vendored",
"lua54",
"async",
"anyhow",
"serialize",
"send",
] }
tokio-tungstenite = "0.23.1"
rand = "0.9.0"
clap = { version = "4.5.37", features = ["derive", "env"] }
axum = { version = "0.8.1", features = ["macros", "ws"] }
tokio-util = { version = "0.7.13", features = ["io"] }
if-addrs = "0.13.3"
tower-http = { version = "0.6.2", features = ["fs"] }
http-range-header = "0.4.2"
httpdate = "1.0.3"
rcgen = { git = "https://github.com/koitococo/rcgen.git", branch = "v0.13.2", features = [
"x509-parser",
"pem",
"crypto",
"ring",
], default-features = false }
# rustls-pemfile = { version = "2.2.0", default-features = false }
futures = "0.3.31"
tokio-rustls = { version = "0.26.2", features = [
"ring",
], default-features = false }
bytes = { version = "1.10.1", features = ["serde"] }
# hmac = "0.12.1"
# signature = { version = "2.2.0", features = ["derive", "digest"] }
# ed25519 = { version = "2.2.3", features = ["pkcs8", "serde", "serde_bytes"], registry = "rsproxy" }
# serde_bytes = "0.11.17"
ring-compat = { version = "0.8.0", features = ["pkcs8"] }
http = "1.3.1"
serde_yaml_ng = "0.10.0"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["feature", "signal", "user"] }
[target.'cfg(target_os = "linux")'.dependencies]
sysinfo = { version = "0.34.1", features = [
"serde",
"linux-netdevs",
"linux-tmpfs",
] }
[target.'cfg(target_os = "macos")'.dependencies]
sysinfo = { version = "0.34.1", features = [
"serde",
] }