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.
34 lines
719 B
34 lines
719 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"
|
|
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.1"
|
|
|
|
[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 = "*"
|
|
|