[package]
edition = "2024"
name = "ccsctx"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast provider switcher for cc-switch"
homepage = "https://github.com/Just-CJ/cc-switch-context"
documentation = "https://github.com/Just-CJ/cc-switch-context"
readme = "README.md"
keywords = [
"cli",
"cc-switch",
"claude",
"codex",
"gemini",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/Just-CJ/cc-switch-context"
[lib]
name = "ccsctx"
path = "src/lib.rs"
[[bin]]
name = "ccsctx"
path = "src/main.rs"
[[bin]]
name = "claudectx"
path = "src/main.rs"
[[bin]]
name = "codexctx"
path = "src/main.rs"
[[bin]]
name = "geminictx"
path = "src/main.rs"
[[test]]
name = "app_resolution"
path = "tests/app_resolution.rs"
[[test]]
name = "claude_switch"
path = "tests/claude_switch.rs"
[[test]]
name = "cli_args"
path = "tests/cli_args.rs"
[[test]]
name = "codex_gemini_switch"
path = "tests/codex_gemini_switch.rs"
[[test]]
name = "default_behavior"
path = "tests/default_behavior.rs"
[[test]]
name = "errors_and_exit"
path = "tests/errors_and_exit.rs"
[[test]]
name = "fzf_mode"
path = "tests/fzf_mode.rs"
[[test]]
name = "smoke_help"
path = "tests/smoke_help.rs"
[[test]]
name = "store_roundtrip"
path = "tests/store_roundtrip.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.serial_test]
version = "3.2"
[dev-dependencies.tempfile]
version = "3.14"