pipey 0.2.1

A lightweight HTTP-to-WebSocket event delivery service.
Documentation
[package]
name = "pipey"
version = "0.2.1"
edition = "2024"
authors = ["Peter Nyando"]
description = "A lightweight HTTP-to-WebSocket event delivery service."
license = "MIT"
repository = "https://github.com/anomalous254/pipey"
homepage = "https://github.com/anomalous254/pipey"
documentation = "https://docs.rs/pipey"
readme = "README.md"
keywords = ["websocket", "realtime", "events", "http", "async"]
categories = [
    "network-programming",
    "web-programming",
    "asynchronous",
]

[dependencies]
actix-web = "4.14.0"
actix-ws = "0.4.0"
arifa = "0.3.48"
actix-cors = "0.7.1"
serde_json = "1.0.150"
redis = { version = "1.3", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"]}
tokio = { version = "1.52", features = ["full",] }
dotenvy = "0.15.7"
colored = "3.1.1"
thiserror = "2.0.18"
uuid = { version = "1", features = ["v4", "serde"] }
async-trait = "0.1.89"
futures-util = "0.3"
askama = "0.16.0"
tracing = "0.1.44"
dashmap = "6.2.1"
tracing-subscriber = {version="0.3.23", features=["fmt", "env-filter"]}
tracing-actix-web = "0.7.22"

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

[[bin]]
name = "pipey"
path = "src/bin/main.rs"