[[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 = ["async-await", "sink", "std"]
version = "0.3"
[dependencies.gio]
optional = true
version = "0.9"
[dependencies.glib]
optional = true
version = "0.10"
[dependencies.log]
version = "0.4"
[dependencies.openssl]
optional = true
version = "0.10"
[dependencies.pin-project]
version = "0.4"
[dependencies.real-async-native-tls]
optional = true
package = "async-native-tls"
version = "0.3.0"
[dependencies.real-async-tls]
optional = true
package = "async-tls"
version = "0.9"
[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.1"
[dependencies.real-tokio-openssl]
optional = true
package = "tokio-openssl"
version = "0.4"
[dependencies.tokio]
features = ["tcp", "dns"]
optional = true
version = "0.2"
[dependencies.tungstenite]
default-features = false
version = "0.11.0"
[dev-dependencies.async-std]
features = ["attributes", "unstable"]
version = "1.0"
[dev-dependencies.env_logger]
version = "0.7"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.url]
version = "2.0.0"
[features]
async-native-tls = ["async-std-runtime", "real-async-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/tls"]
tokio-openssl = ["tokio-runtime", "real-tokio-openssl", "openssl"]
tokio-runtime = ["tokio"]
[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"
keywords = ["websocket", "io", "web", "tokio", "async-std"]
license = "MIT"
name = "async-tungstenite"
readme = "README.md"
repository = "https://github.com/sdroege/async-tungstenite"
version = "0.8.0"
[package.metadata.docs.rs]
features = ["async-std-runtime", "tokio-runtime", "gio-runtime", "async-tls", "async-native-tls", "tokio-native-tls"]