Files
Aether/apps/aether-tunnel/Cargo.toml
T

49 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "aether-tunnel"
2026-06-01 01:36:49 +08:00
version = "0.3.16"
edition = "2021"
description = "Tunnel agent for Aether"
[dependencies]
aether-contracts.workspace = true
aether-gateway-tunnel.workspace = true
aether-http.workspace = true
aether-runtime.workspace = true
2026-05-08 00:18:12 +08:00
aether-runtime-state.workspace = true
axum.workspace = true
tokio = { version = "1", features = ["full"] }
reqwest.workspace = true
hyper = { version = "1", features = ["client", "http1", "http2"] }
hyper-util = { version = "0.1", features = ["client", "client-legacy", "http1", "http2", "tokio"] }
http-body-util = "0.1"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
tokio-rustls = "0.26"
futures-util = "0.3"
base64 = "0.22"
clap = { version = "4", features = ["derive", "env"] }
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json.workspace = true
thiserror = "2"
bytes = "1"
sha2 = "0.10"
hex = "0.4"
anyhow = "1"
2026-02-28 01:32:28 +08:00
arc-swap = "1"
toml = "0.8"
rustls = { version = "0.23", features = ["ring"] }
ratatui = "0.30"
crossterm = "0.28"
url = "2"
sysinfo = "0.32"
libc = "0.2"
2026-02-08 14:54:10 +08:00
flate2 = "1"
tar = "0.4"
socket2 = { version = "0.5", features = ["all"] }
tower-service = "0.3"
webpki-roots = "0.26"
2026-05-22 14:35:43 +08:00
uuid.workspace = true
[dev-dependencies]
aether-gateway.workspace = true