async-tungstenite 0.17.2

Async binding for Tungstenite, the Lightweight stream-based WebSocket implementation
Documentation
[[example]]
name = "autobahn-client"
required-features = ["async-std-runtime"]

[[example]]
name = "async-std-echo"
required-features = ["async-std-runtime"]

[[example]]
name = "client"
required-features = ["async-std-runtime"]

[[example]]
name = "autobahn-server"
required-features = ["async-std-runtime"]

[[example]]
name = "server"
required-features = ["async-std-runtime"]

[[example]]
name = "echo-server"
required-features = ["async-std-runtime"]

[[example]]
name = "interval-server"
required-features = ["async-std-runtime"]

[[example]]
name = "gio-echo"
required-features = ["gio-runtime"]

[[example]]
name = "tokio-echo"
required-features = ["tokio-runtime"]
[dependencies.async-std]
optional = true
version = "1.0"

[dependencies.futures-io]
default-features = false
features = ["std"]
version = "0.3"

[dependencies.futures-util]
default-features = false
features = ["sink", "std"]
version = "0.3"

[dependencies.gio]
optional = true
version = "0.15"

[dependencies.glib]
optional = true
version = "0.15"

[dependencies.log]
version = "0.4"

[dependencies.openssl]
optional = true
version = "0.10"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.real-async-native-tls]
optional = true
package = "async-native-tls"
version = "0.4.0"

[dependencies.real-async-tls]
optional = true
package = "async-tls"
version = "0.11"

[dependencies.real-native-tls]
optional = true
package = "native-tls"
version = "0.2"

[dependencies.real-tokio-native-tls]
optional = true
package = "tokio-native-tls"
version = "0.3"

[dependencies.real-tokio-openssl]
optional = true
package = "tokio-openssl"
version = "0.6"

[dependencies.real-tokio-rustls]
optional = true
package = "tokio-rustls"
version = "0.23"

[dependencies.rustls-native-certs]
optional = true
version = "0.6"

[dependencies.tokio]
features = ["net"]
optional = true
version = "1.0"

[dependencies.tungstenite]
default-features = false
version = "0.17.0"

[dependencies.webpki-roots]
optional = true
version = "0.22"
[dev-dependencies.async-std]
features = ["attributes", "unstable"]
version = "1.0"

[dev-dependencies.env_logger]
version = "0.9"

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.tokio]
features = ["full"]
version = "1.0"

[dev-dependencies.url]
version = "2.0.0"

[features]
async-native-tls = ["async-std-runtime", "real-async-native-tls", "tungstenite/native-tls"]
async-std-runtime = ["async-std"]
async-tls = ["real-async-tls"]
default = []
gio-runtime = ["gio", "glib"]
tokio-native-tls = ["tokio-runtime", "real-tokio-native-tls", "real-native-tls", "tungstenite/native-tls"]
tokio-openssl = ["tokio-runtime", "real-tokio-openssl", "openssl"]
tokio-runtime = ["tokio"]
tokio-rustls-native-certs = ["tokio-runtime", "real-tokio-rustls", "rustls-native-certs", "tungstenite/__rustls-tls"]
tokio-rustls-webpki-roots = ["tokio-runtime", "real-tokio-rustls", "webpki-roots", "tungstenite/__rustls-tls"]
verbose-logging = []

[package]
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
categories = ["web-programming::websocket", "network-programming", "asynchronous", "concurrency"]
description = "Async binding for Tungstenite, the Lightweight stream-based WebSocket implementation"
documentation = "https://docs.rs/async-tungstenite"
edition = "2018"
homepage = "https://github.com/sdroege/async-tungstenite"
include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["websocket", "io", "web", "tokio", "async-std"]
license = "MIT"
name = "async-tungstenite"
readme = "README.md"
repository = "https://github.com/sdroege/async-tungstenite"
version = "0.17.2"
[package.metadata.docs.rs]
features = ["async-std-runtime", "tokio-runtime", "gio-runtime", "async-tls", "async-native-tls", "tokio-native-tls"]