[dependencies.axum]
features = ["ws", "multipart", "tracing", "macros", "tokio"]
version = "0.7.6"
[dependencies.axum-extra]
version = "0.9.4"
[dependencies.futures]
version = "0.3.30"
[dependencies.futures-util]
default-features = false
features = ["sink", "std"]
version = "0.3.30"
[dependencies.tokio]
features = ["full", "tracing"]
version = "1.40.0"
[dependencies.tokio-tungstenite]
version = "0.24.0"
[dependencies.tower]
features = ["full"]
version = "0.5.1"
[dependencies.tower-http]
features = ["full"]
version = "0.6.1"
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.18"
[dependencies.uuid]
features = ["v4", "fast-rng", "serde"]
version = "1.10.0"
[lib]
name = "websoc_kit"
path = "src/lib.rs"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.clippy.nursery]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust.unsafe_code]
level = "forbid"
priority = 0
[package]
authors = ["Todd Everett Griffin <tgriffin115@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["web-programming::websocket", "web-programming", "network-programming", "api-bindings", "asynchronous"]
description = "A highly-opinionated Websocket tooling kit."
edition = "2021"
homepage = "https://www.toddgriffin.me/"
include = ["**/*.rs", "Cargo.toml", ".clippy.toml", "LICENSE", "README.md"]
keywords = ["websocket", "websockit", "websoc-kit", "tools", "tooling"]
license = "MIT"
name = "websoc-kit"
readme = "README.md"
repository = "https://github.com/goddtriffin/websoc-kit"
rust-version = "1.81"
version = "0.0.1"
[[test]]
name = "temp"
path = "tests/temp.rs"