websocketing 0.1.0

WebSocketing is a WebSockets actor framework.
Documentation
[package]
name = "websocketing"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "WebSocketing is a WebSockets actor framework."
repository = "https://github.com/coruscateor/websocketing"
homepage = "https://coruscateor.com/projects/websocketing"
keywords = ["tungstenite", "websockets", "actors", "async", "pipeline"]
categories = ["asynchronous", "concurrency", "network-programming"]
authors = ["Paul Saunders"]

[dependencies]

async-tungstenite = { version = "0.34.1", features = ["tokio-runtime", "async-native-tls"] } #Is TLS required?

act_rs = "0.5.0"  #act_rs = { path = "../act_rs" }

act_rs_tokio = "0.2.0" #act_rs_tokio = { path = "../act_rs_tokio" }

libsync = { version = "0.4.0", features = ["crossbeam-queue", "tokio", "use_parking_lot_sync"] }

highly_sendable = "0.2.0" #highly_sendable = { path = "../highly_sendable" }

pastey = "0.2.2"

tokio = { version = "1.52.3", features = ["rt", "rt-multi-thread", "sync", "macros", "time"] }

futures = "0.3.32"

some_more_options = "0.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]