[package]
edition = "2021"
name = "room-cli"
version = "3.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-user chat room for agent/human coordination over Unix domain sockets"
readme = "README.md"
keywords = [
"cli",
"chat",
"agents",
"coordination",
"tui",
]
categories = [
"command-line-utilities",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/knoxio/room"
[lib]
name = "room_cli"
path = "src/lib.rs"
[[bin]]
name = "room"
path = "src/main.rs"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "broker"
path = "tests/broker.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "oneshot"
path = "tests/oneshot.rs"
[[test]]
name = "rest_query"
path = "tests/rest_query.rs"
[[test]]
name = "room_lifecycle"
path = "tests/room_lifecycle.rs"
[[test]]
name = "scripted"
path = "tests/scripted.rs"
[[test]]
name = "ws"
path = "tests/ws.rs"
[[test]]
name = "ws_smoke"
path = "tests/ws_smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8.8"
features = ["ws"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.futures-util]
version = "=0.3.31"
features = ["sink"]
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.room-daemon]
version = "3.4.0"
[dependencies.room-plugin-taskboard]
version = "3.4.0"
[dependencies.room-protocol]
version = "3.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower-http]
version = "0.6.8"
features = ["cors"]
[dependencies.unicode-width]
version = "0.2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.reqwest]
version = "0.13.2"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-tungstenite]
version = "0.28"
[lints.clippy]
cognitive_complexity = "warn"
too_many_arguments = "warn"
too_many_lines = "warn"