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.
 
 
tungstenite-rs/Cargo.toml

34 lines
729 B

[package]
name = "tungstenite"
description = "Lightweight stream-based WebSocket implementation"
categories = ["web-programming::websocket", "network-programming"]
keywords = ["websocket", "io", "web"]
authors = ["Alexey Galakhov"]
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/snapview/tungstenite-rs"
documentation = "https://docs.rs/tungstenite"
repository = "https://github.com/snapview/tungstenite-rs"
version = "0.2.2"
[features]
default = ["tls"]
tls = ["native-tls"]
[dependencies]
base64 = "*"
byteorder = "*"
bytes = "*"
httparse = "*"
log = "*"
rand = "*"
sha1 = "*"
url = "*"
utf-8 = "*"
[dependencies.native-tls]
optional = true
version = "*"
[dev-dependencies]
env_logger = "*"