mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-06-28 17:25:54 +08:00
1320aa57a8
- HIGH: CLI 所有修改命令补 broadcast_env_change() - HIGH: --system/--user 互斥校验,不再静默忽略 - MEDIUM: gui/Cargo.toml 删冗余 serde_json(log 保留,lib.rs 实际使用) - MEDIUM: import_csv 对跳过行输出 log::warn - MEDIUM: ProfilePathEntry 从 core 重导出 - LOW: Cargo workspace.package 统一元数据 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
585 B
TOML
25 lines
585 B
TOML
[package]
|
|
name = "patheditor"
|
|
description = "Windows PATH Environment Variable Editor"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.2", features = [] }
|
|
|
|
[dependencies]
|
|
path-editor-core = { path = "../core" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.11.2", features = [] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-dialog = "2"
|