23c9481af1
Harvest the HarmonyOS/OpenHarmony port from PR #2634 and make it publish-safe by target-gating unsupported host dependencies out of the OHOS TUI graph. Self-update is disabled on OHOS, PTY shell mode reports unsupported, and Starlark execpolicy parsing returns an explicit unsupported-platform error until upstream starlark/rustyline/nix support catches up. Add OHOS SDK setup docs and launcher scripts, install the rustls ring provider for rustls-no-provider entrypoints, and keep the packaged codewhale-tui OHOS graph free of starlark, rustyline, nix@0.28, portable-pty, and arboard. Validation: cargo fmt --all -- --check; git diff --check; git diff --cached --check; cargo check -p codewhale-cli --locked; cargo check -p codewhale-app-server --locked; cargo check -p codewhale-tui --locked; cargo test -p codewhale-cli --locked update::tests::; cargo test -p codewhale-release --locked; cargo test -p codewhale-tui --locked background_tty_command_has_controlling_terminal; cargo test -p codewhale-tui --locked clipboard; cargo package -p codewhale-tui --allow-dirty --no-verify --locked; packaged OHOS cargo tree checks. OHOS target check still requires a loaded OpenHarmony SDK/sysroot and currently stops in ring with missing assert.h when CC/CFLAGS/linker are unset. Harvested from PR #2634 by @shenjackyuanjie. Co-authored-by: shenjackyuanjie <54507071+shenjackyuanjie@users.noreply.github.com>
49 lines
1.4 KiB
TOML
49 lines
1.4 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"
|
|
|
|
# Legacy alias — forwards to `codewhale` and prints a deprecation notice.
|
|
# Will be removed in v0.9.0.
|
|
[[bin]]
|
|
name = "deepseek"
|
|
path = "src/bin/deepseek_legacy_shim.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
clap_complete.workspace = true
|
|
codewhale-agent = { path = "../agent", version = "0.8.53" }
|
|
codewhale-app-server = { path = "../app-server", version = "0.8.53" }
|
|
codewhale-config = { path = "../config", version = "0.8.53" }
|
|
codewhale-execpolicy = { path = "../execpolicy", version = "0.8.53" }
|
|
codewhale-mcp = { path = "../mcp", version = "0.8.53" }
|
|
codewhale-release = { path = "../release", version = "0.8.53" }
|
|
codewhale-secrets = { path = "../secrets", version = "0.8.53" }
|
|
codewhale-state = { path = "../state", version = "0.8.53" }
|
|
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
|
|
sha2.workspace = true
|
|
tempfile = "3.16"
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|