Files
codeg/src-tauri/Cargo.toml
xintaofei bdbfa9ce97 Release version 0.1.4
支持自定义消息发送和消息换行的快捷键
修复agent执行命令可能会残留子进程
继续重构会话消息处理逻辑(简化消息处理逻辑,提升性能)
升级Gemini CLI的SDK版本
修复git仓库初始化功能
添加缺失的agent图标,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/9
完善 Gemini CLI 会话扫描目录,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/10
支持按模型名搜索会话,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/10
支持在会话实时响应时添加消息到队列
2026-03-13 00:20:21 +08:00

63 lines
2.0 KiB
TOML

[package]
name = "codeg"
version = "0.1.4"
description = "Agent Code Generation App"
authors = ["feitao"]
edition = "2021"
# 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"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
tauri-plugin-dialog = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
dirs = "6"
walkdir = "2"
sacp = "11.0.0-alpha.1"
sacp-tokio = "11.0.0-alpha.1"
tokio = { version = "1", features = ["process", "io-util", "sync", "macros", "rt"] }
uuid = { version = "1", features = ["v4"] }
futures = "0.3"
reqwest = { version = "0.12", features = ["stream"] }
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" }
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.10", features = ["unstable_session_usage"] }
kill_tree = { version = "0.2", features = ["tokio"] }
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-window-state = "2"
tauri-plugin-updater = "2"
tauri-plugin-process = "2"
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
[patch.crates-io]
sacp-tokio = { path = "vendor/sacp-tokio" }