Rename the local deterministic launch helper from colibri-smoke-agent to colibri-test-agent, update CLI/TUI/tests/docs, and teach the FreeBSD rc.d service to source /usr/local/etc/colibri/provider.env plus set a service PATH for local spawns.\n\nChecks: cargo fmt --check; ./scripts/check-format.sh; git diff --check; cargo check -p colibri-daemon -p colibri-client -p colibri-glasspane-tui; cargo check -p colibri-client --bins; cargo test -p colibri-client --test live_socket_check -- --nocapture.
27 lines
795 B
TOML
27 lines
795 B
TOML
[package]
|
|
name = "colibri-client"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
description = "Typed Unix-socket client for colibri-daemon/Glasspane API"
|
|
|
|
[[bin]]
|
|
name = "colibri"
|
|
path = "src/bin/colibri.rs"
|
|
|
|
[[bin]]
|
|
name = "colibri-test-agent"
|
|
path = "src/bin/colibri_test_agent.rs"
|
|
|
|
[dependencies]
|
|
colibri-daemon = { path = "../colibri-daemon" }
|
|
colibri-glasspane = { path = "../colibri-glasspane" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "time"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
colibri-store = { path = "../colibri-store" }
|