22 lines
563 B
TOML
22 lines
563 B
TOML
[package]
|
|
name = "headroom-client"
|
|
description = "Blocking Rust client for the Headroom control protocol."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license = "MPL-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
headroom-ipc = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
# Reserved for an eventual `tokio::net::UnixStream`-based async client.
|
|
async = []
|