[package] name = "actix-ws" description = "Websockets for the Actix runtime, without Actors" version = "0.1.0" authors = ["asonix "] readme = "README.md" repository = "https://git.asonix.dog/asonix/actix-actorless-websockets" license = "MIT/Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace] members = [ "examples/chat" ] [dependencies] actix-http = { version = "2.0.0", default-features = false } actix-web = { version = "3.0.2", default-features = false } anyhow = "1.0" bytes = "0.5" futures = "0.3" pin-project = "0.4.9" thiserror = "1.0" tokio = { version = "0.2", features = ["sync", "stream", "io-util"] } tokio-util = { version = "0.3", features = ["codec"] }