[package]
edition = "2021"
rust-version = "1.85"
name = "supercode-cli"
version = "0.4.12"
authors = ["supercode contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "supercode — a lightweight, fully-customizable AI coding agent CLI in Rust. Any model via OpenRouter; natively continues Claude Code and Codex sessions."
homepage = "https://github.com/volter-ai/supercode"
readme = "README.md"
keywords = [
"ai",
"agent",
"llm",
"coding",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/volter-ai/supercode"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/supercode-{ target }.tar.gz"
bin-dir = "supercode-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[[bin]]
name = "supercode"
path = "src/main.rs"
[[test]]
name = "acp_cli"
path = "tests/acp_cli.rs"
[[test]]
name = "attachable_runtime_cli"
path = "tests/attachable_runtime_cli.rs"
[[test]]
name = "claude_runtime_resume_cli"
path = "tests/claude_runtime_resume_cli.rs"
[[test]]
name = "codex_cross_surface_conformance"
path = "tests/codex_cross_surface_conformance.rs"
[[test]]
name = "codex_fidelity_cli"
path = "tests/codex_fidelity_cli.rs"
[[test]]
name = "config_diagnostics_cli"
path = "tests/config_diagnostics_cli.rs"
[[test]]
name = "convert_surface_cli"
path = "tests/convert_surface_cli.rs"
[[test]]
name = "dedup_cli"
path = "tests/dedup_cli.rs"
[[test]]
name = "doctor_tiers_cli"
path = "tests/doctor_tiers_cli.rs"
[[test]]
name = "handoff_cli"
path = "tests/handoff_cli.rs"
[[test]]
name = "hooks_cli"
path = "tests/hooks_cli.rs"
[[test]]
name = "json_breadth_cli"
path = "tests/json_breadth_cli.rs"
[[test]]
name = "login_cli"
path = "tests/login_cli.rs"
[[test]]
name = "mcp_import_cli"
path = "tests/mcp_import_cli.rs"
[[test]]
name = "mcp_module_gate_cli"
path = "tests/mcp_module_gate_cli.rs"
[[test]]
name = "mcp_oauth_cli"
path = "tests/mcp_oauth_cli.rs"
[[test]]
name = "notify_cli"
path = "tests/notify_cli.rs"
[[test]]
name = "onboarding_cli"
path = "tests/onboarding_cli.rs"
[[test]]
name = "picker_available_cli"
path = "tests/picker_available_cli.rs"
[[test]]
name = "preset_capability_cli"
path = "tests/preset_capability_cli.rs"
[[test]]
name = "quiet_cli"
path = "tests/quiet_cli.rs"
[[test]]
name = "reduced_resume"
path = "tests/reduced_resume.rs"
[[test]]
name = "reductions_cli"
path = "tests/reductions_cli.rs"
[[test]]
name = "reductions_output_normalized_cli"
path = "tests/reductions_output_normalized_cli.rs"
[[test]]
name = "resume_id_cli"
path = "tests/resume_id_cli.rs"
[[test]]
name = "sdk_surface_cli"
path = "tests/sdk_surface_cli.rs"
[[test]]
name = "server_capability_gate_cli"
path = "tests/server_capability_gate_cli.rs"
[[test]]
name = "session_names_cli"
path = "tests/session_names_cli.rs"
[[test]]
name = "session_watch_cli"
path = "tests/session_watch_cli.rs"
[[test]]
name = "soft_interrupt_cli"
path = "tests/soft_interrupt_cli.rs"
[[test]]
name = "soft_steer_cli"
path = "tests/soft_steer_cli.rs"
[[test]]
name = "spinner_cli"
path = "tests/spinner_cli.rs"
[[test]]
name = "token_counter_cli"
path = "tests/token_counter_cli.rs"
[[test]]
name = "tool_input_cli"
path = "tests/tool_input_cli.rs"
[[test]]
name = "trace_stream_json_cli"
path = "tests/trace_stream_json_cli.rs"
[[test]]
name = "unified_frontend_compat_cli"
path = "tests/unified_frontend_compat_cli.rs"
[[test]]
name = "update_check_cli"
path = "tests/update_check_cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.crossterm]
version = "0.29"
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.30"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.rustyline]
version = "14"
[dependencies.same-file]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.supercode-codex-frontend]
version = "=0.4.12"
[dependencies.supercode-core]
version = "=0.4.12"
[dependencies.supercode-frontend-tui]
version = "=0.4.12"
[dependencies.supercode-opencode-frontend]
version = "=0.4.12"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.url]
version = "2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Threading",
]