tungstenite-rs/Cargo.toml

40 lines
901 B
TOML
Raw Normal View History

2016-12-21 23:42:09 +00:00
[package]
2017-02-01 09:01:08 +00:00
name = "tungstenite"
description = "Lightweight stream-based WebSocket implementation"
2017-03-22 18:25:59 +00:00
categories = ["web-programming::websocket", "network-programming"]
keywords = ["websocket", "io", "web"]
2016-12-21 23:42:09 +00:00
authors = ["Alexey Galakhov"]
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/snapview/tungstenite-rs"
2020-08-05 15:39:30 +00:00
documentation = "https://docs.rs/tungstenite/0.11.1"
repository = "https://github.com/snapview/tungstenite-rs"
2020-08-05 15:39:30 +00:00
version = "0.11.1"
2019-08-26 17:00:41 +00:00
edition = "2018"
2016-12-21 23:42:09 +00:00
[features]
default = ["tls"]
2016-12-21 23:42:09 +00:00
tls = ["native-tls"]
tls-vendored = ["native-tls", "native-tls/vendored"]
2016-12-21 23:42:09 +00:00
[dependencies]
2020-04-20 05:43:12 +00:00
base64 = "0.12.0"
byteorder = "1.3.2"
bytes = "0.5"
2019-12-03 07:48:49 +00:00
http = "0.2"
httparse = "1.3.4"
input_buffer = "0.3.0"
log = "0.4.8"
rand = "0.7.2"
2020-07-28 06:34:31 +00:00
sha-1 = "0.9"
url = "2.1.0"
utf-8 = "0.7.5"
2016-12-21 23:42:09 +00:00
[dependencies.native-tls]
optional = true
version = "0.2.3"
[dev-dependencies]
env_logger = "0.7.1"
net2 = "0.2.33"