clasp-cli 4.1.0

Command-line interface for CLASP protocol servers and bridges
[package]
name = "clasp-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Command-line interface for CLASP protocol servers and bridges"
readme = "README.md"

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

[dependencies]
clasp-core = { workspace = true }
clasp-bridge = { workspace = true, features = ["osc", "midi", "artnet", "mqtt", "websocket", "http"] }
clasp-transport = { workspace = true, features = ["websocket", "udp", "quic"] }
clasp-caps = { workspace = true, optional = true }
clasp-registry = { workspace = true, optional = true }

# Certificate generation for QUIC dev mode
rcgen = "0.12"

# CLI
clap = { version = "4.4", features = ["derive", "env"] }
colored = "2.1"

# Async
tokio = { workspace = true, features = ["full", "signal"] }
futures = { workspace = true }

# Config
toml = "0.8"
serde = { workspace = true }
serde_json = { workspace = true }

# Logging
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }

# Error handling
anyhow = { workspace = true }

# Crypto (for key generation and cap/entity token commands)
ed25519-dalek = { workspace = true }
rand = { workspace = true }
bs58 = { workspace = true }

# Utils
ctrlc = "3.4"
dirs = "5.0"

[features]
default = ["caps", "registry"]
caps = ["dep:clasp-caps"]
registry = ["dep:clasp-registry"]