ws-endpoint 0.1.0

A WebSocket API endpoint implemented in Rust
Documentation
[package]
name = "ws-endpoint"
version = "0.1.0"
authors = ["Michael Bachmann <mbachmann@bbmsoft.net>"]
edition = "2018"
description = "A WebSocket API endpoint implemented in Rust"
readme = "README.md"
repository = "https://gitlab.com/bbmsoft.net/ws-endpoint/"
license = "MIT"
keywords = ["web", "socket", "websocket", "tungstenite", "tokio"]
categories = ["web-programming::websocket", "asynchronous"]

[badges]
gitlab = { repository = "https://gitlab.com/bbmsoft.net/ws-endpoint/", branch = "master" }
maintenance = { status = "passively-maintained" }

[dependencies]
futures-util = "0.3"
tokio = { version = "0.2", features = ["sync", "stream"] }
tungstenite = "0.10"
tokio-tungstenite = "0.10"
log = "0.4"

[dev-dependencies]
serde = {version="1.0", features = ["derive"]}
serde_json = "1.0"
env_logger = "0.7"
tokio = { version = "0.2", features = ["sync", "stream", "macros", "time"] }