mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
parent
98fc153152
commit
fb227943ae
2 changed files with 5 additions and 4 deletions
|
@ -37,7 +37,7 @@ warp = { version = "0.3.3", optional = true }
|
|||
axum = { version = "0.6.1", optional = true, features = ["ws"] }
|
||||
|
||||
# salvo
|
||||
salvo = { version = "0.37.7", optional = true, features = ["ws"] }
|
||||
salvo = { version = "0.44.1", optional = true, features = ["ws"] }
|
||||
once_cell = "1.17.1"
|
||||
|
||||
# actix is ... complicated?
|
||||
|
@ -51,7 +51,7 @@ tokio = { workspace = true, features = ["full"] }
|
|||
dioxus = { workspace = true }
|
||||
warp = "0.3.3"
|
||||
axum = { version = "0.6.1", features = ["ws"] }
|
||||
salvo = { version = "0.37.7", features = ["affix", "ws"] }
|
||||
salvo = { version = "0.44.1", features = ["affix", "ws"] }
|
||||
tower = "0.4.13"
|
||||
|
||||
[features]
|
||||
|
|
|
@ -20,7 +20,8 @@ fn app(cx: Scope) -> Element {
|
|||
async fn main() {
|
||||
pretty_env_logger::init();
|
||||
|
||||
let addr: SocketAddr = ([127, 0, 0, 1], 3030).into();
|
||||
let addr = "127.0.0.1:3030";
|
||||
let acceptor = TcpListener::new(addr).bind().await;
|
||||
|
||||
let view = LiveViewPool::new();
|
||||
|
||||
|
@ -31,7 +32,7 @@ async fn main() {
|
|||
|
||||
println!("Listening on http://{}", addr);
|
||||
|
||||
Server::new(TcpListener::bind(addr)).serve(router).await;
|
||||
Server::new(acceptor).serve(router).await;
|
||||
}
|
||||
|
||||
#[handler]
|
||||
|
|
Loading…
Reference in a new issue