d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
Web Frontend / Deploy to Cloudflare (push) Waiting to run
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "codewhale-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Agentic terminal facade for open-source and open-weight coding models"
|
|
|
|
[[bin]]
|
|
name = "codewhale"
|
|
path = "src/main.rs"
|
|
|
|
# Short-form convenience alias — forwards to `codewhale` silently.
|
|
[[bin]]
|
|
name = "codew"
|
|
path = "src/bin/codew_legacy_shim.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
clap_complete.workspace = true
|
|
codewhale-agent = { path = "../agent", version = "0.8.68" }
|
|
codewhale-app-server = { path = "../app-server", version = "0.8.68" }
|
|
codewhale-config = { path = "../config", version = "0.8.68" }
|
|
codewhale-lane = { path = "../lane", version = "0.8.68" }
|
|
codewhale-workflow = { path = "../workflow", version = "0.8.68" }
|
|
codewhale-execpolicy = { path = "../execpolicy", version = "0.8.68" }
|
|
codewhale-mcp = { path = "../mcp", version = "0.8.68" }
|
|
codewhale-release = { path = "../release", version = "0.8.68" }
|
|
codewhale-secrets = { path = "../secrets", version = "0.8.68" }
|
|
codewhale-state = { path = "../state", version = "0.8.68" }
|
|
chrono.workspace = true
|
|
dirs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
rustls.workspace = true
|
|
semver.workspace = true
|
|
tokio.workspace = true
|
|
mimalloc.workspace = true
|
|
sha2.workspace = true
|
|
tempfile.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[build-dependencies]
|
|
codewhale-build-support = { path = "../build-support", version = "0.8.68" }
|
|
|
|
# Parent-death cleanup for delegated server children (#3259): on Linux the
|
|
# dispatcher sets PR_SET_PDEATHSIG so the child is signalled if the dispatcher
|
|
# dies uncatchably; on Windows it assigns the child to a kill-on-job-close Job
|
|
# Object. Also used in main.rs to reset SIGPIPE to SIG_DFL on any Unix target
|
|
# (#4030), so libc must be available across all Unix, not just Linux.
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.62", features = ["Win32_Foundation", "Win32_Security", "Win32_System_JobObjects", "Win32_System_Threading"] }
|
|
|
|
[dev-dependencies]
|