12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- [package]
- name = "clash-verge"
- version = "1.4.3"
- description = "clash verge"
- authors = ["zzzgydi"]
- license = "GPL-3.0"
- repository = "https://github.com/clash-verge-rev/clash-verge-rev.git"
- default-run = "clash-verge"
- edition = "2021"
- build = "build.rs"
- [build-dependencies]
- tauri-build = { version = "1", features = [] }
- [dependencies]
- warp = "0.3"
- which = "5.0.0"
- anyhow = "1.0"
- dirs = "5.0"
- open = "5.0"
- log = "0.4"
- ctrlc = "3.4"
- dunce = "1.0"
- log4rs = "1"
- nanoid = "0.4"
- chrono = "0.4"
- sysinfo = "0.29"
- sysproxy = { git="https://github.com/zzzgydi/sysproxy-rs", branch = "main" }
- rquickjs = "0.3"
- serde_json = "1.0"
- serde_yaml = "0.9"
- auto-launch = "0.5"
- once_cell = "1.18"
- port_scanner = "0.1.5"
- delay_timer = "0.11"
- parking_lot = "0.12"
- tokio = { version = "1", features = ["full"] }
- serde = { version = "1.0", features = ["derive"] }
- reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
- tauri = { version = "1.5", features = ["clipboard-all", "global-shortcut-all", "process-all", "shell-all", "system-tray", "updater", "window-all"] }
- window-vibrancy = { version = "0.4.3" }
- window-shadows = { version = "0.2" }
- percent-encoding = "2.3.1"
- [target.'cfg(windows)'.dependencies]
- runas = "=1.0.0"
- deelevate = "0.2.0"
- winreg = { version = "0.52", features = ["transactions"] }
- windows-sys = { version = "0.52", features = ["Win32_System_LibraryLoader", "Win32_System_SystemInformation"] }
- [target.'cfg(windows)'.dependencies.tauri]
- features = ["global-shortcut-all", "icon-png", "process-all", "shell-all", "system-tray", "updater", "window-all"]
- [target.'cfg(linux)'.dependencies.tauri]
- features = ["global-shortcut-all", "process-all", "shell-all", "system-tray", "updater", "window-all", "native-tls-vendored", "reqwest-native-tls-vendored"]
- [features]
- default = ["custom-protocol"]
- custom-protocol = ["tauri/custom-protocol"]
- [profile.release]
- panic = "abort"
- codegen-units = 1
- lto = true
- opt-level = "s"
|