1
0
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:
cirm 2020-11-05 21:11:14 +02:00 committed by GitHub
parent 542e6dbcdd
commit 25d34ee4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -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"

View File

@ -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();