# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" rust-version = "1.70" name = "veilid-async-tungstenite" version = "0.23.0" authors = ["Sebastian Dröge "] include = [ "examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md", ] description = "Async binding for Tungstenite, the Lightweight stream-based WebSocket implementation" homepage = "https://github.com/sdroege/async-tungstenite" documentation = "https://docs.rs/async-tungstenite" readme = "README.md" keywords = [ "websocket", "io", "web", "tokio", "async-std", ] categories = [ "web-programming::websocket", "network-programming", "asynchronous", "concurrency", ] license = "MIT" repository = "https://github.com/sdroege/async-tungstenite" [package.metadata.docs.rs] features = [ "async-std-runtime", "tokio-runtime", "gio-runtime", "async-tls", "async-native-tls", "tokio-native-tls", ] [[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 = "server-headers" required-features = [ "async-std-runtime", "handshake", ] [[example]] name = "interval-server" required-features = ["async-std-runtime"] [[example]] name = "gio-echo" required-features = ["gio-runtime"] [[example]] name = "gio-echo-server" required-features = ["gio-runtime"] [[example]] name = "tokio-echo" required-features = ["tokio-runtime"] [[example]] name = "server-custom-accept" required-features = ["tokio-runtime"] [dependencies.async-std] version = "1.0" optional = true [dependencies.futures-io] version = "0.3" features = ["std"] default-features = false [dependencies.futures-util] version = "0.3" features = [ "sink", "std", ] default-features = false [dependencies.gio] version = "0.18" optional = true [dependencies.glib] version = "0.18" optional = true [dependencies.log] version = "0.4" [dependencies.openssl] version = "0.10" optional = true [dependencies.pin-project-lite] version = "0.2" [dependencies.real-async-native-tls] version = "0.5.0" optional = true package = "async-native-tls" [dependencies.real-async-tls] version = "0.12" optional = true package = "veilid-async-tls" [dependencies.real-native-tls] version = "0.2" optional = true package = "native-tls" [dependencies.real-tokio-native-tls] version = "0.3" optional = true package = "tokio-native-tls" [dependencies.real-tokio-openssl] version = "0.6" optional = true package = "tokio-openssl" [dependencies.real-tokio-rustls] version = "0.24" optional = true package = "tokio-rustls" [dependencies.rustls-native-certs] version = "0.6" optional = true [dependencies.tokio] version = "1.0" features = ["net"] optional = true [dependencies.tungstenite] version = "0.20" default-features = false [dependencies.webpki-roots] version = "0.25" optional = true [dev-dependencies.async-std] version = "1.0" features = [ "attributes", "unstable", ] [dev-dependencies.env_logger] version = "0.10" [dev-dependencies.futures] version = "0.3" [dev-dependencies.futures-channel] version = "0.3" [dev-dependencies.hyper] version = "0.14" features = [ "http1", "server", "tcp", ] default-features = false [dev-dependencies.tokio] version = "1.0" features = ["full"] [dev-dependencies.url] version = "2.0.0" [features] __rustls-tls = [ "tokio-runtime", "real-tokio-rustls", "tungstenite/__rustls-tls", ] async-native-tls = [ "async-std-runtime", "real-async-native-tls", "tungstenite/native-tls", ] async-std-runtime = [ "async-std", "handshake", ] async-tls = [ "real-async-tls", "handshake", ] default = ["handshake"] gio-runtime = [ "gio", "glib", "handshake", ] handshake = ["tungstenite/handshake"] 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", "handshake", ] tokio-rustls-manual-roots = ["__rustls-tls"] tokio-rustls-native-certs = [ "__rustls-tls", "rustls-native-certs", ] tokio-rustls-webpki-roots = [ "__rustls-tls", "webpki-roots", ] verbose-logging = []