- expose command-monitor conversations and preserve visible agent transcripts - add bounded polling and a dedicated shell interrupt tool - improve direct-provider images, skills, tool history, and usage handling - package and brand Galaxy Control across releases, installers, persistence, and docs
42 lines
973 B
TOML
42 lines
973 B
TOML
[package]
|
|
name = "galaxy_cli"
|
|
edition = "2024"
|
|
description = "CLI argument parsing for Galaxy"
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
chrono.workspace = true
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
cfg-if = { workspace = true }
|
|
humantime.workspace = true
|
|
jaq-all.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
url = { workspace = true, features = ["serde"] }
|
|
uuid = { workspace = true }
|
|
galaxy_core = { path = "../galaxy_core" }
|
|
color-print = "0.3"
|
|
galaxy_util = { path = "../galaxy_util" }
|
|
clap_complete = "4.5.58"
|
|
anyhow.workspace = true
|
|
local_control.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { workspace = true, features = [
|
|
"Win32_Foundation"
|
|
] }
|
|
|
|
[build-dependencies]
|
|
cfg_aliases.workspace = true
|
|
|
|
[features]
|
|
plugin_host = []
|
|
integration_tests = []
|
|
api_key_authentication = []
|
|
|
|
|
|
[dev-dependencies]
|
|
serial_test = "0.8.0"
|