[package]
edition = "2024"
name = "websocketing"
version = "0.1.0"
authors = ["Paul Saunders"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WebSocketing is a WebSockets actor framework."
homepage = "https://coruscateor.com/projects/websocketing"
readme = "README.md"
keywords = [
"tungstenite",
"websockets",
"actors",
"async",
"pipeline",
]
categories = [
"asynchronous",
"concurrency",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/coruscateor/websocketing"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "websocketing"
path = "src/lib.rs"
[dependencies.act_rs]
version = "0.5.0"
[dependencies.act_rs_tokio]
version = "0.2.0"
[dependencies.async-tungstenite]
version = "0.34.1"
features = [
"tokio-runtime",
"async-native-tls",
]
[dependencies.futures]
version = "0.3.32"
[dependencies.highly_sendable]
version = "0.2.0"
[dependencies.libsync]
version = "0.4.0"
features = [
"crossbeam-queue",
"tokio",
"use_parking_lot_sync",
]
[dependencies.pastey]
version = "0.2.2"
[dependencies.some_more_options]
version = "0.1.0"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"time",
]