mirror of
https://github.com/actix/actix-extras.git
synced 2025-08-01 07:51:52 +02:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.44.2 to 1.46.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.46.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.46.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
994 B
TOML
34 lines
994 B
TOML
[package]
|
|
name = "actix-ws"
|
|
version = "0.3.0"
|
|
description = "WebSockets for Actix Web, without actors"
|
|
categories = ["web-programming::websocket"]
|
|
keywords = ["actix", "web", "websocket", "websockets", "streaming"]
|
|
authors = [
|
|
"asonix <asonix@asonix.dog>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
actix-codec = "0.5"
|
|
actix-http = { version = "3", default-features = false, features = ["ws"] }
|
|
actix-web = { version = "4", default-features = false }
|
|
bytestring = "1"
|
|
futures-core = "0.3.17"
|
|
tokio = { version = "1.46", features = ["sync"] }
|
|
|
|
[dev-dependencies]
|
|
actix-web = "4.8"
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
tokio = { version = "1.46", features = ["sync", "rt", "macros"] }
|
|
tracing = "0.1.30"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[lints]
|
|
workspace = true
|