mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 01:10:23 +08:00
28 lines
738 B
TOML
28 lines
738 B
TOML
[package]
|
|
name = "aether-hub"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "Tunnel Hub for Aether - frame router between workers and proxies"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
dashmap = "6"
|
|
parking_lot = "0.12"
|
|
flate2 = "1"
|
|
futures-util = "0.3"
|
|
bytes = "1"
|
|
async-stream = "0.3"
|
|
http-body-util = "0.1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|