websocket_toolkit 0.2.0

A WebSocket toolkit for Rust, enabling efficient real-time communication with flexible reconnection and message handling capabilities.
Documentation
[badges.travis-ci]
repository = "SUMANTH571/Websocket-Toolkit"

[[bin]]
name = "websocket_toolkit"
path = "src/main.rs"

[dependencies.arbitrary]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.env_logger]
version = "0.9"

[dependencies.futures]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.libfuzzer-sys]
default-features = false
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1"

[dependencies.serde_cbor]
optional = true
version = "0.11"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.tokio]
features = ["full"]
optional = true
version = "1"

[dependencies.tokio-tungstenite]
optional = true
version = "0.15"

[dependencies.tungstenite]
version = "0.15"

[dependencies.url]
version = "2"

[dev-dependencies.env_logger]
version = "0.9"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[dev-dependencies.tokio-tungstenite]
version = "0.15"

[[example]]
name = "simple_websocket"
path = "examples/simple_websocket.rs"

[features]
default = ["tokio", "tokio-tungstenite", "serde", "serde_json", "serde_cbor"]

[lib]
name = "websocket_toolkit"
path = "src/lib.rs"

[package]
authors = ["Sai Sumanth", "Leela Venkat Sai", "Kushal Kumar"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "asynchronous", "web-programming"]
description = "A WebSocket toolkit for Rust, enabling efficient real-time communication with flexible reconnection and message handling capabilities."
documentation = "https://docs.rs/websocket_toolkit"
edition = "2021"
homepage = "https://github.com/SUMANTH571/Websocket-Toolkit"
keywords = ["WebSocket", "Rust", "Real-time", "Networking", "Async"]
license = "MIT"
name = "websocket_toolkit"
readme = "README.md"
repository = "https://github.com/SUMANTH571/Websocket-Toolkit"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true

[profile.release]
opt-level = 3

[[test]]
name = "fuzz_test"
path = "tests/fuzz_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"