- fix(chat-input): raise toolbar collapse threshold to 34rem so selectors stay visible at wider input widths. - fix(acp): prevent Windows terminal hangs caused by orphaned pipes and .cmd shims. - fix(acp): fix context loss when resuming a historical conversation by deferring auto-connect until the session id resolves. - fix(sidebar): clarify empty state when completed conversations are hidden. - chore(acp): bump claude-code to 0.31.0, codex to 0.12.0, opencode to 1.14.23, gemini to 0.39.1. ----------------------------- # 发布版本 0.10.3 - 修复(聊天输入):将工具栏折叠阈值提升到 34rem,更宽的输入区仍能保留选择器; - 修复(ACP):修复 Windows 下因管道残留与 .cmd shim 导致的终端挂起; - 修复(ACP):修复在历史会话中继续对话时偶发的上下文丢失问题,自动连接会等待历史会话 id 解析完成后再发起; - 修复(侧边栏):在隐藏已完成会话时显示更清晰的空态提示; - 杂项(ACP):升级 claude-code 至 0.31.0、codex 至 0.12.0、opencode 至 1.14.23、gemini 至 0.39.1。
105 lines
3.3 KiB
TOML
105 lines
3.3 KiB
TOML
[package]
|
|
name = "codeg"
|
|
version = "0.10.3"
|
|
description = "Agent Code Generation App"
|
|
authors = ["feitao"]
|
|
edition = "2021"
|
|
default-run = "codeg"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "codeg_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["tauri-runtime"]
|
|
tauri-runtime = [
|
|
"dep:tauri",
|
|
"dep:tauri-plugin-opener",
|
|
"dep:tauri-plugin-dialog",
|
|
"dep:fix-path-env",
|
|
"dep:tauri-build",
|
|
"dep:tauri-plugin-window-state",
|
|
"dep:tauri-plugin-updater",
|
|
"dep:tauri-plugin-process",
|
|
"dep:tauri-plugin-notification",
|
|
"dep:keyring",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "codeg"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "codeg-server"
|
|
path = "src/bin/codeg_server.rs"
|
|
required-features = []
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [], optional = true }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [], optional = true }
|
|
tauri-plugin-opener = { version = "2", optional = true }
|
|
tauri-plugin-dialog = { version = "2", optional = true }
|
|
async-trait = "0.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2"
|
|
dirs = "6"
|
|
walkdir = "2"
|
|
sacp = "11.0.0"
|
|
sacp-tokio = "11.0.0"
|
|
tokio = { version = "1", features = ["process", "io-util", "sync", "macros", "rt", "net", "rt-multi-thread"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
futures = "0.3"
|
|
reqwest = { version = "0.12", features = ["stream", "json"] }
|
|
flate2 = "1"
|
|
bzip2 = "0.5"
|
|
tar = "0.4"
|
|
zip = "2"
|
|
regex = "1"
|
|
portable-pty = "0.8"
|
|
urlencoding = "2"
|
|
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs", version = "0.0.0", optional = true }
|
|
sea-orm = { version = "1.1", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros"] }
|
|
sea-orm-migration = { version = "1.1", features = ["sqlx-sqlite", "runtime-tokio-rustls"] }
|
|
toml = "0.8"
|
|
notify = "6"
|
|
base64 = "0.22"
|
|
agent-client-protocol-schema = { version = "0.11", features = ["unstable_session_usage", "unstable_session_fork"] }
|
|
kill_tree = { version = "0.2", features = ["tokio"] }
|
|
which = "7"
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"], optional = true }
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
tower-http = { version = "0.6", features = ["fs", "cors"] }
|
|
tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
|
|
futures-util = "0.3"
|
|
prost = "0.13"
|
|
rand = "0.8"
|
|
qrcode = "0.14"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
include_dir = "0.7"
|
|
sha2 = "0.10"
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-window-state = { version = "2", optional = true }
|
|
tauri-plugin-updater = { version = "2", optional = true }
|
|
tauri-plugin-process = { version = "2", optional = true }
|
|
tauri-plugin-notification = { version = "2", optional = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
mac-notification-sys = "0.6"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
|
|
junction = "1"
|
|
|
|
[patch.crates-io]
|
|
sacp-tokio = { path = "vendor/sacp-tokio" }
|