[package]
edition = "2021"
rust-version = "1.85"
name = "orchestratectl"
version = "0.1.1"
authors = ["Jari Mustonen"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust CLI for orchestrating AI-agent workflows on a developer's machine."
homepage = "https://github.com/jarimustonen/orchestratectl"
readme = false
license = "MIT"
repository = "https://github.com/jarimustonen/orchestratectl"
[package.metadata.dist]
dist = true
[[bin]]
name = "orchestratectl"
path = "src/main.rs"
[[test]]
name = "creation_reliability"
path = "tests/creation_reliability.rs"
[[test]]
name = "discussion"
path = "tests/discussion.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "e2e_orchestrated"
path = "tests/e2e_orchestrated.rs"
[[test]]
name = "e2e_spinoff"
path = "tests/e2e_spinoff.rs"
[[test]]
name = "envelope_snapshots"
path = "tests/envelope_snapshots.rs"
[[test]]
name = "event"
path = "tests/event.rs"
[[test]]
name = "headless_session_teardown"
path = "tests/headless_session_teardown.rs"
[[test]]
name = "help_json"
path = "tests/help_json.rs"
[[test]]
name = "logging"
path = "tests/logging.rs"
[[test]]
name = "node"
path = "tests/node.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "run_merge"
path = "tests/run_merge.rs"
[[test]]
name = "run_wait"
path = "tests/run_wait.rs"
[[test]]
name = "skill"
path = "tests/skill.rs"
[[test]]
name = "skill_examples"
path = "tests/skill_examples.rs"
[[test]]
name = "spawn_all_kinds"
path = "tests/spawn_all_kinds.rs"
[[test]]
name = "spinoff"
path = "tests/spinoff.rs"
[[test]]
name = "supervise_gates"
path = "tests/supervise_gates.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.ctrlc]
version = "3.4"
features = ["termination"]
[dependencies.humantime]
version = "2"
[dependencies.libc]
version = "0.2"
[dependencies.octl-core]
version = "=0.1.1"
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sysinfo]
version = "0.32"
features = ["system"]
default-features = false
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
features = ["parse"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
features = [
"json",
"filters",
]
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serial_test]
version = "3"
features = ["file_locks"]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1