Cleanup & More migration To TTP
This commit is contained in:
parent
41d4014ca5
commit
cce13a2b5a
8 changed files with 253 additions and 2226 deletions
81
Cargo.toml
81
Cargo.toml
|
|
@ -8,91 +8,30 @@ epsilon-core = { git = "https://github.com/Tensamin/Epsilon.git", package = "eps
|
|||
epsilon-native = { git = "https://github.com/Tensamin/Epsilon.git", package = "epsilon-native" }
|
||||
|
||||
ansi_term = "*"
|
||||
async-tungstenite = { version = "0.32.1", features = [
|
||||
"futures-03-sink",
|
||||
"futures-util",
|
||||
"handshake",
|
||||
"__rustls-tls",
|
||||
"async-native-tls",
|
||||
"async-std",
|
||||
"async-std-runtime",
|
||||
"async-tls",
|
||||
"gio",
|
||||
"gio-runtime",
|
||||
"glib",
|
||||
"openssl",
|
||||
"real-async-native-tls",
|
||||
"real-async-tls",
|
||||
"real-native-tls",
|
||||
"real-tokio-native-tls",
|
||||
"real-tokio-openssl",
|
||||
"real-tokio-rustls",
|
||||
"rustls-native-certs",
|
||||
"rustls-pki-types",
|
||||
"tokio",
|
||||
"tokio-native-tls",
|
||||
"tokio-openssl",
|
||||
"tokio-runtime",
|
||||
"tokio-rustls-manual-roots",
|
||||
"tokio-rustls-native-certs",
|
||||
"tokio-rustls-webpki-roots",
|
||||
"url",
|
||||
"verbose-logging",
|
||||
"webpki-roots",
|
||||
] }
|
||||
axum = "*"
|
||||
uuid = { version = "*", features = ["v4"] }
|
||||
|
||||
base64 = "0.22.1"
|
||||
bytes = "*"
|
||||
chrono = "*"
|
||||
cmake = "*"
|
||||
crossterm = "*"
|
||||
dashmap = "*"
|
||||
der = "*"
|
||||
futures = "*"
|
||||
futures-util = "*"
|
||||
hex = "*"
|
||||
http = "*"
|
||||
json = "*"
|
||||
loom = "0.7.2"
|
||||
once_cell = "1.21.3"
|
||||
pkcs8 = { version = "*", features = ["alloc"] }
|
||||
rand = "0.8"
|
||||
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||
reqwest = "*"
|
||||
rustls = { version = "0.23.37", default-features = false, features = ["std", "tls12", "aws-lc-rs", "prefer-post-quantum"] }
|
||||
quinn = { version = "0.11.9", default-features = false, features = ["runtime-tokio", "rustls-aws-lc-rs"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
rustls = { version = "0.23.37", default-features = false, features = [
|
||||
"std",
|
||||
"tls12",
|
||||
"aws-lc-rs",
|
||||
"prefer-post-quantum",
|
||||
] }
|
||||
sha2 = "*"
|
||||
sys-info = "*"
|
||||
sysinfo = "0.30"
|
||||
tokio = { version = "*", features = ["full"] }
|
||||
tokio-rustls = "0.12.0"
|
||||
tokio-stream = "*"
|
||||
tokio-util = { version = "*", features = ["full"] }
|
||||
tokio_websocket_server = "0.1.0"
|
||||
tower = "0.5.2"
|
||||
tracing = "*"
|
||||
tracing-subscriber = "*"
|
||||
tungstenite = "*"
|
||||
uuid = "*"
|
||||
walkdir = "2.5.0"
|
||||
warp = "*"
|
||||
x448 = { version = "*" }
|
||||
x509 = "*"
|
||||
log = "0.4"
|
||||
dotenv = "0.15.0"
|
||||
aes-gcm = "0.10.3"
|
||||
tokio-native-tls = "0.3.1"
|
||||
hkdf = "0.12.4"
|
||||
block-modes = "0.9.1"
|
||||
cbc = "0.1.2"
|
||||
aes = "0.8.4"
|
||||
strum = "0.27.2"
|
||||
strum_macros = "0.27.2"
|
||||
livekit = "0.7.32"
|
||||
strum = "0.28.0"
|
||||
strum_macros = "0.28.0"
|
||||
livekit-api = { version = "0.4.14", features = ["native-tls"] }
|
||||
hyper = { version = "1.8.1", features = ["http1", "http2"] }
|
||||
livekit-protocol = "0.7.1"
|
||||
rustls-pemfile = "2.2.0"
|
||||
thiserror = "2.0.18"
|
||||
webpki-roots = "1.0.6"
|
||||
|
|
|
|||
Loading…
Reference in a new issue