[package]
edition = "2024"
name = "pipey"
version = "0.1.1"
authors = ["Peter Nyando"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight HTTP-to-WebSocket event delivery service."
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",
]
license = "MIT"
repository = "https://github.com/anomalous254/pipey"
[lib]
name = "pipey"
path = "src/lib.rs"
[[bin]]
name = "pipey"
path = "src/bin/main.rs"
[dependencies.actix-web]
version = "4.14.0"
[dependencies.actix-ws]
version = "0.4.0"
[dependencies.arifa]
version = "0.3.44"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.colored]
version = "3.1.1"
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.futures-util]
version = "0.3"
[dependencies.redis]
version = "1.3"
features = [
"tokio-comp",
"connection-manager",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52"
features = ["full"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]