tf-rust-socketio 0.7.0

A Socket.IO client implementation in Rust. Fork of rust_socketio with server-to-client ACK support, reconnect headers, and close reason enhancements.
Documentation
[package]
name = "tf-rust-socketio"
version = "0.7.0"
authors = ["A2C-SMCP"]
edition = "2021"
description = "A Socket.IO client implementation in Rust. Fork of rust_socketio with server-to-client ACK support, reconnect headers, and close reason enhancements."
readme = "../README.md"
repository = "https://github.com/A2C-SMCP/tf-rust-socketio"
keywords = ["socketio", "engineio", "network", "protocol", "client"]
categories = ["network-programming", "web-programming", "web-programming::websocket"]
license = "MIT"

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

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] }

[dependencies]
tf-rust-engineio = { version = "0.7.0", path = "../engineio" }
base64 = "0.22.1"
bytes = "1"
backoff = "0.4"
rand = "0.8.5"
adler32 = "1.2.0"
serde_json = "1.0"
thiserror = "1.0"
native-tls = "0.2.12"
url = "2.5.4"
tokio = { version = "1.40.0", optional = true }
futures-util = { version = "0.3", default-features = false, features = ["sink"], optional = true }
async-stream = { version = "0.3.6", optional = true }
log = "0.4.22"
serde = "1.0.215"

[dev-dependencies]
cargo-tarpaulin = "0.18.5"
serial_test = "3.0.0"

[dev-dependencies.tokio]
version = "1.40.0"
# we need the `#[tokio::test]` macro
features = ["macros", "rt-multi-thread"]

[features]
default = []
async-callbacks = ["tf-rust-engineio/async-callbacks"]
async = ["async-callbacks", "tf-rust-engineio/async", "tokio", "futures-util", "async-stream"]

[[example]]
name = "async"
path = "examples/async.rs"
required-features = ["async"]