[package]
edition = "2024"
name = "sioc"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Socket.IO client with type-safe event handling"
documentation = "https://docs.rs/sioc"
readme = "README.md"
keywords = [
"async",
"networking",
"realtime",
"socketio",
"websocket",
]
categories = [
"asynchronous",
"network-programming",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Stanley5249/sioc-rs"
[lib]
name = "sioc"
path = "src/lib.rs"
[[example]]
name = "impl_event_router"
path = "examples/impl_event_router.rs"
[[test]]
name = "ack"
path = "tests/ack.rs"
[[test]]
name = "event"
path = "tests/event.rs"
[dependencies.bytes]
version = "1"
[dependencies.bytestring]
version = "1"
features = ["serde"]
[dependencies.eioc]
version = "0.2.0"
[dependencies.futures-util]
version = "0.3"
[dependencies.miette]
version = "7"
[dependencies.pin-project]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = ["charset"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_path_to_error]
version = "0.1"
[dependencies.sioc-macros]
version = "0.2.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"sync",
"time",
"full",
]