feat(network): 添加网络接口信息获取功能

- 新增 network-interface 依赖用于获取系统网络接口- 实现 Rust 端 get_network_interfaces 命令- 在 Svelte 前端调用 Tauri 命令并展示网络接口信息
- 添加接口信息表格展示及错误处理
- 更新布局结构移除多余注释和空行
This commit is contained in:
Chaos
2025-11-10 16:50:26 +08:00
parent cacb25a2ca
commit 514c025caf
11 changed files with 169 additions and 14 deletions

View File

@@ -19,7 +19,8 @@ tauri-build = { version = "2.5.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.228" }
log = "0.4"
tauri = { version = "2.9.2", features = [] }
tauri-plugin-log = "2"
network-interface = "2.0.3"