async sockets
This commit is contained in:
commit
4170b9f387
23 changed files with 544 additions and 479 deletions
69
Cargo.toml
69
Cargo.toml
|
|
@ -4,41 +4,42 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "*"
|
||||
json = "*"
|
||||
axum = "*"
|
||||
futures-util = "*"
|
||||
rustls = { version = "*", default-features = false, features = ["ring"] }
|
||||
tokio-tungstenite = { version = "0.23.1", default-features = false, features = [
|
||||
"connect",
|
||||
"rustls-tls-webpki-roots",
|
||||
"tokio-rustls"
|
||||
] }
|
||||
cmake = "*"
|
||||
tokio = { version = "*", features = ["full"] }
|
||||
uuid = { version = "*", features = ["v4"] }
|
||||
walkdir = "2.5.0"
|
||||
sysinfo = "0.30"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
ratatui = { version = "*", features = ["all-widgets"]}
|
||||
bytes = "*"
|
||||
crossterm = "*"
|
||||
color-eyre = "*"
|
||||
sys-info = "*"
|
||||
rand = "0.8"
|
||||
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||
base64 = "0.22.1"
|
||||
once_cell = "1.21.3"
|
||||
reqwest = "0.12.23"
|
||||
x448 = { version = "*" }
|
||||
hex = "*"
|
||||
x509 = "*"
|
||||
sha2 = "*"
|
||||
der = "*"
|
||||
pkcs8 = { version = "*", features = ["alloc"] }
|
||||
tungstenite = "*"
|
||||
futures = "*"
|
||||
aes-gcm = "*"
|
||||
async-trait = "*"
|
||||
async-tungstenite = { version = "*" }
|
||||
axum = "*"
|
||||
base64 = "0.22.1"
|
||||
bytes = "*"
|
||||
cmake = "*"
|
||||
color-eyre = "*"
|
||||
crossterm = "*"
|
||||
der = "*"
|
||||
futures = "*"
|
||||
futures-util = "*"
|
||||
hex = "*"
|
||||
hkdf = "*"
|
||||
hmac = "*"
|
||||
hyper = { version = "*", features = ["full"] }
|
||||
json = "*"
|
||||
native-tls = { version = "*", default-features = false }
|
||||
once_cell = "1.21.3"
|
||||
pkcs8 = { version = "*", features = ["alloc"] }
|
||||
rand = "0.8"
|
||||
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||
ratatui = { version = "*", features = ["all-widgets"]}
|
||||
reactive-rs = "*"
|
||||
reqwest = "0.12.23"
|
||||
rustls = { version = "*", default-features = false, features = ["ring"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
sha2 = "*"
|
||||
sys-info = "*"
|
||||
sysinfo = "0.30"
|
||||
tokio = { version = "*", features = ["full"] }
|
||||
tokio-util = { version = "*", features = ["full"] }
|
||||
tokio-tungstenite = { version = "*", features = ["native-tls"] }
|
||||
tungstenite = "*"
|
||||
uuid = { version = "*", features = ["v4"] }
|
||||
walkdir = "2.5.0"
|
||||
warp = "*"
|
||||
x448 = { version = "*" }
|
||||
x509 = "*"
|
||||
|
|
|
|||
Loading…
Reference in a new issue