mirror of
https://github.com/actix/examples
synced 2025-01-22 22:05:57 +01:00
Upgrade websocket-chat-broker example to actix V3 and actix-broker 3.1 (#383)
Co-authored-by: Madis Jullinen <mjullinen@twilio.com>
This commit is contained in:
parent
542e6dbcdd
commit
25d34ee4e1
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "websocket-chat-broker"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = [
|
||||
"Chris Ricketts <chris.ricketts@steribar.com>",
|
||||
"Rob Ede <robjtede@icloud.com>",
|
||||
@ -12,12 +12,12 @@ name = "server"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.9"
|
||||
actix-broker = "0.3"
|
||||
actix-files = "0.2"
|
||||
actix = "0.10"
|
||||
actix-broker = "0.3.1"
|
||||
actix-files = "0.4"
|
||||
actix-rt = "1"
|
||||
actix-web = "2"
|
||||
actix-web-actors = "2"
|
||||
actix-web = "3"
|
||||
actix-web-actors = "3"
|
||||
env_logger = "0.7"
|
||||
futures = "0.3"
|
||||
log = "0.4"
|
||||
|
@ -17,7 +17,7 @@ async fn chat_route(
|
||||
ws::start(WsChatSession::default(), &req, stream)
|
||||
}
|
||||
|
||||
#[actix_rt::main]
|
||||
#[actix_web::main]
|
||||
async fn main() -> std::io::Result<()> {
|
||||
env_logger::from_env(env_logger::Env::default().default_filter_or("info")).init();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user