mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-06-29 01:45:54 +08:00
344011a02c
- 版本号 4.0.0 → 4.2.0(tauri.conf.json, Cargo.toml, 窗口标题) - README 徽章更新(tests 55→72, version 4.0.0→4.2.0) - CHANGELOG.md 补充 v4.1 和 v4.2 变更记录 - 新增 CONTRIBUTING.md 贡献指南 - GitHub Release: v4.2.0 补充说明,旧 C 版本标记为 pre-release Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
30 lines
621 B
TOML
30 lines
621 B
TOML
[package]
|
|
name = "patheditor"
|
|
version = "4.2.0"
|
|
description = "Windows PATH Environment Variable Editor"
|
|
authors = ["刘航宇"]
|
|
license = "MIT"
|
|
repository = "https://github.com/LHY0125/PathEditor"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.2", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.11.2", features = [] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-dialog = "2"
|
|
|
|
# Windows API
|
|
winreg = "0.52"
|
|
dirs = "5"
|
|
chrono = "0.4"
|