mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-13 05:20:28 +08:00
* chore(deps): lock file maintenance * chore: update Cargo.toml --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Slinetrac <realakayuki@gmail.com>
23 lines
568 B
TOML
23 lines
568 B
TOML
[package]
|
|
name = "tauri-plugin-clash-verge-sysinfo"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.91"
|
|
|
|
[dependencies]
|
|
tauri = { workspace = true }
|
|
tauri-plugin-clipboard-manager = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
# sysinfo 0.38.2 conflicts with dark-light
|
|
# see https://github.com/GuillaumeGomez/sysinfo/issues/1623
|
|
sysinfo = { version = "0.38", features = ["network", "system"] }
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
libc = "0.2.183"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
deelevate = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|