2026-02-27 04:29:51 +00:00
|
|
|
[package]
|
|
|
|
|
name = "triple-c"
|
Bump version to 0.3.0
## What's New in v0.3.0
### Claude Code Settings (TUI Mode, Effort, Focus, Caching)
- New per-project and global settings for Claude Code CLI behavior
- **TUI Fullscreen Mode**: Flicker-free alt-screen rendering via CLAUDE_CODE_NO_FLICKER
- **Effort Level**: Control reasoning depth (low/medium/high)
- **Focus Mode**: Collapse tool output to one-line summaries
- **Thinking Summaries**: Show Claude's thinking process
- **Session Recap**: Get context when returning to a session
- **Auto-Scroll Disabled**: Disable auto-scroll in fullscreen TUI
- **Env Scrub**: Strip credentials from subprocess environments
- **Prompt Caching (1h)**: Enable 1-hour prompt cache TTL
- New ClaudeCodeSettingsModal accessible from project config and global settings
- Settings injected as env vars and ~/.claude/settings.json via entrypoint
### Session Naming
- Name Claude Code terminal sessions with the -n flag
- Session names displayed in terminal tabs instead of project name
### Global Default Fallbacks
- Global SSH key path now used when per-project SSH path is not set
- Global git name/email now used when per-project values are not set
- New UI in Settings panel for SSH key directory, git name, and git email
### Relaxed Environment Variable Filter
- CLAUDE_CODE_* env vars now allowed in custom env vars for power users
- Only specific internal vars (CLAUDE_INSTRUCTIONS, MCP_SERVERS_JSON, etc.) blocked
### Documentation
- Updated README, HOW-TO-USE, and CLAUDE.md with all new features
- New "Claude Code Tips" section documenting built-in CLI features
(/focus, /recap, /color, /loop, /powerup, /team-onboarding, setup wizards)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 08:48:19 -07:00
|
|
|
version = "0.3.0"
|
2026-02-27 04:29:51 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "triple_c_lib"
|
|
|
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "triple-c"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-03-01 01:45:59 +00:00
|
|
|
tauri = { version = "2", features = ["image-png", "image-ico"] }
|
2026-02-27 04:29:51 +00:00
|
|
|
tauri-plugin-store = "2"
|
|
|
|
|
tauri-plugin-dialog = "2"
|
|
|
|
|
tauri-plugin-opener = "2"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
bollard = "0.18"
|
|
|
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "linux-native"] }
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
futures-util = "0.3"
|
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
dirs = "6"
|
|
|
|
|
log = "0.4"
|
2026-03-01 01:45:59 +00:00
|
|
|
fern = { version = "0.7", features = ["date-based"] }
|
2026-02-27 04:29:51 +00:00
|
|
|
tar = "0.4"
|
2026-04-03 09:09:15 -07:00
|
|
|
include_dir = "0.7"
|
2026-04-12 20:02:39 -07:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "multipart"] }
|
2026-03-01 15:57:22 +00:00
|
|
|
iana-time-zone = "0.1"
|
2026-03-04 10:42:06 -08:00
|
|
|
sha2 = "0.10"
|
2026-03-17 19:31:16 -07:00
|
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
|
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
|
|
|
base64 = "0.22"
|
|
|
|
|
rand = "0.9"
|
|
|
|
|
local-ip-address = "0.6"
|
2026-02-27 04:29:51 +00:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["custom-protocol"]
|
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|