You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
487 B
23 lines
487 B
2 months ago
|
[package]
|
||
|
name = "text_editor"
|
||
|
version = "0.1.0"
|
||
|
edition = "2024"
|
||
|
|
||
|
[dependencies]
|
||
|
# GUI框架
|
||
|
egui = "0.31.1" # 用于界面
|
||
|
eframe = "0.31.1" # 用于应用框架
|
||
|
# 文件系统操作
|
||
|
walkdir = "2.4"
|
||
|
# 文本处理
|
||
|
regex = "1.10"
|
||
|
# Windows特定功能
|
||
|
windows = { version = "0.61.1", features = [
|
||
|
"Win32_Foundation",
|
||
|
"Win32_UI_WindowsAndMessaging",
|
||
|
"Win32_UI_Shell",
|
||
|
"Win32_Storage_FileSystem",
|
||
|
] }
|
||
|
|
||
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
serde_json = "1.0"
|