[package]
edition = "2021"
rust-version = "1.83"
name = "gws"
version = "0.0.1"
authors = ["Neo"]
build = false
exclude = [
"examples/*",
"benchmark/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON-RPC 2.0 websocket client & server implementation."
homepage = "https://github.com/neogenie/gws/"
documentation = "https://docs.rs/gws/"
readme = "README.md"
keywords = [
"websocket",
"jsonrpc",
]
categories = [
"network-programming",
"web-programming::websocket",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/neogenie/gws/"
[lib]
name = "gws"
path = "src/lib.rs"
bench = false
[dependencies]