You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
919 B
39 lines
919 B
[package]
|
|
name = "tungstenite"
|
|
description = "Lightweight stream-based WebSocket implementation"
|
|
categories = ["web-programming::websocket", "network-programming"]
|
|
keywords = ["websocket", "io", "web"]
|
|
authors = ["Alexey Galakhov", "Daniel Abramov"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/snapview/tungstenite-rs"
|
|
documentation = "https://docs.rs/tungstenite/0.12.0"
|
|
repository = "https://github.com/snapview/tungstenite-rs"
|
|
version = "0.12.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["tls"]
|
|
tls = ["native-tls"]
|
|
tls-vendored = ["native-tls", "native-tls/vendored"]
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
byteorder = "1.3.2"
|
|
bytes = "1.0"
|
|
http = "0.2"
|
|
httparse = "1.3.4"
|
|
input_buffer = "0.4.0"
|
|
log = "0.4.8"
|
|
rand = "0.8.0"
|
|
sha-1 = "0.9"
|
|
url = "2.1.0"
|
|
utf-8 = "0.7.5"
|
|
|
|
[dependencies.native-tls]
|
|
optional = true
|
|
version = "0.2.3"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.8.1"
|
|
net2 = "0.2.33"
|
|
|