tapaculo 1.1.0

Lightweight Rust server for real-time and turn-based multiplayer communication
Documentation
[[bench]]
harness = false
name = "auth"
path = "benches/auth.rs"

[[bench]]
harness = false
name = "pubsub"
path = "benches/pubsub.rs"

[[bench]]
harness = false
name = "rate_limit"
path = "benches/rate_limit.rs"

[[bench]]
harness = false
name = "room"
path = "benches/room.rs"

[dependencies.anyhow]
version = "1.0.99"

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

[dependencies.axum]
features = ["macros", "ws"]
version = "0.8.4"

[dependencies.chrono]
version = "0.4.41"

[dependencies.dotenv]
version = "0.15.0"

[dependencies.futures]
version = "0.3"

[dependencies.jsonwebtoken]
version = "9.3.1"

[dependencies.redis]
features = ["aio", "tokio-comp"]
optional = true
version = "0.32.5"

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

[dependencies.serde_json]
version = "1.0.143"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
features = ["full"]
version = "1.45.0"

[dependencies.tokio-stream]
version = "0.1.17"

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

[dependencies.tower-http]
features = ["full"]
version = "0.6.4"

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.19"

[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.5"

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

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

[features]
default = ["inmemory"]
inmemory = []
redis-backend = ["dep:redis"]

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

[package]
authors = ["Alex Trebs email@alextrebilcock.co.uk"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development", "network-programming", "web-programming::websocket"]
description = "Lightweight Rust server for real-time and turn-based multiplayer communication"
documentation = "https://docs.rs/tapaculo"
edition = "2021"
exclude = ["docs/", ".github/", "target/"]
homepage = "https://github.com/AlexTrebs/tapaculo"
keywords = ["websocket", "multiplayer", "game-server", "realtime", "pubsub"]
license = "MIT"
name = "tapaculo"
readme = "README.md"
repository = "https://github.com/AlexTrebs/tapaculo"
version = "1.1.0"