[FIX] Websocket & webserver is now actix, because that should be better
than hyper & axum, i guess we'll see in the long run :}, ToDo: IF THIS WORKS: implement on the iota
This commit is contained in:
parent
9e24276ba2
commit
4becc01f3a
7 changed files with 1432 additions and 961 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -4,8 +4,13 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.13.5"
|
||||
actix-rt = "2.11.0"
|
||||
actix-web = { version = "4.12.1", features = ["rustls-0_23"] }
|
||||
actix-web-actors = "4.3.1"
|
||||
aes-gcm = "*"
|
||||
ansi_term = "0.12.1"
|
||||
anyhow = "1.0.101"
|
||||
async-trait = "0.1.89"
|
||||
async-tungstenite = { version = "0.32.0", features = [
|
||||
"futures-03-sink",
|
||||
|
|
@ -39,7 +44,7 @@ async-tungstenite = { version = "0.32.0", features = [
|
|||
"verbose-logging",
|
||||
"webpki-roots",
|
||||
] }
|
||||
axum = { version = "0.8.8", features = [ "ws" ] }
|
||||
axum = { version = "0.8.8", features = ["ws"] }
|
||||
base64 = "0.22.1"
|
||||
bytes = "1.11.1"
|
||||
color-eyre = "0.6.5"
|
||||
|
|
@ -50,15 +55,16 @@ futures-util = "0.3.31"
|
|||
hex = "0.4.3"
|
||||
hkdf = "0.12.4"
|
||||
http-body-util = "0.1.3"
|
||||
hyper = { version = "1.8.1", features = ["full"] }
|
||||
hyper-util = "0.1.20"
|
||||
hyper = { version = "1.8.1", features = ["http2", "full"] }
|
||||
hyper-rustls = { version = "0.27.7", features = ["http2"] }
|
||||
hyper-util = { version = "0.1.20", features = ["full"] }
|
||||
json = "0.12.4"
|
||||
once_cell = "1.21.3"
|
||||
pnet = "0.35.0"
|
||||
rand = "0.8"
|
||||
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||
reqwest = "0.12.28"
|
||||
rustls = "0.23.35"
|
||||
reqwest = "0.13.2"
|
||||
rustls = "0.23.36"
|
||||
rustls-pemfile = "2.2.0"
|
||||
sha1 = "0.10.6"
|
||||
sha2 = "0.10.9"
|
||||
|
|
|
|||
Loading…
Reference in a new issue