[FIX] Web UI
This commit is contained in:
parent
4bb370bca2
commit
059f2e9825
7 changed files with 861 additions and 470 deletions
17
Cargo.toml
17
Cargo.toml
|
|
@ -4,8 +4,12 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.13.5"
|
||||
actix-rt = "2.11.0"
|
||||
actix-web = { version = "4", features = ["rustls-0_23"] }
|
||||
actix-web-actors = "4"
|
||||
actix-files = "0.6"
|
||||
aes-gcm = "*"
|
||||
axum = { version = "0.8.8", features = ["ws", "http2"] }
|
||||
base64 = "0.22.1"
|
||||
bytes = "*"
|
||||
cmake = "*"
|
||||
|
|
@ -18,7 +22,15 @@ hex = "*"
|
|||
hkdf = "*"
|
||||
hmac = "*"
|
||||
hyper-util = { version = "*" }
|
||||
hyper = { version = "1.8.1", features = ["capi", "client", "full", "http1", "http2", "nightly", "server"] }
|
||||
hyper = { version = "1.8.1", features = [
|
||||
"capi",
|
||||
"client",
|
||||
"full",
|
||||
"http1",
|
||||
"http2",
|
||||
"nightly",
|
||||
"server",
|
||||
] }
|
||||
http-body-util = "*"
|
||||
json = "*"
|
||||
native-tls = { version = "*", default-features = false }
|
||||
|
|
@ -60,5 +72,4 @@ ratatui = "0.30.0"
|
|||
ratatui_input = "0.1.3"
|
||||
open = "5.3.3"
|
||||
chrono = "0.4.43"
|
||||
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
|
||||
serde_json = "1.0.149"
|
||||
|
|
|
|||
Loading…
Reference in a new issue