atomic_websocket 0.7.0

High level Websocket util library from tokio-tungstenite
Documentation
[dependencies.async-trait]
version = "0.1.89"

[dependencies.bebop]
optional = true
version = "3.2.3"

[dependencies.chrono]
default-features = false
features = ["clock"]
version = "0.4.43"

[dependencies.dashmap]
version = "6.1"

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

[dependencies.log]
optional = true
version = "0.4.29"

[dependencies.nanoid]
version = "0.4.0"

[dependencies.native_db]
optional = true
version = "0.8.2"

[dependencies.native_model]
optional = true
version = "0.4.20"

[dependencies.rinf]
optional = true
version = "8.8.1"

[dependencies.rustls]
default-features = false
features = ["ring"]
optional = true
version = "0.23.36"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
default-features = false
features = ["sync", "macros", "time", "rt-multi-thread"]
version = "1.49.0"

[dependencies.tokio-tungstenite]
version = "0.28.0"

[dependencies.webpki-roots]
optional = true
version = "1.0.5"

[dev-dependencies.tempfile]
version = "3.10"

[dev-dependencies.tokio-test]
version = "0.4"

[features]
bebop = ["dep:bebop"]
debug = ["dep:log"]
default = ["native-db", "bebop"]
native-db = ["dep:native_db", "dep:native_model"]
rinf = ["dep:rinf"]
rustls = ["dep:rustls", "tokio-tungstenite/__rustls-tls", "dep:webpki-roots"]

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

[package]
authors = ["hsng95@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "High level Websocket util library from tokio-tungstenite"
edition = "2021"
homepage = "https://github.com/rabbitson87/atomic_websocket"
keywords = ["websocket", "client", "server"]
license = "Apache-2.0"
name = "atomic_websocket"
readme = "README.md"
repository = "https://github.com/rabbitson87/atomic_websocket"
rust-version = "1.77"
version = "0.7.0"

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

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

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

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