This repository was archived by the owner on Dec 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
53 lines (46 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "clash-verge-service"
version = "1.1.2"
edition = "2021"
authors = ["zzzgydi", "Clash Verge Rev Team"]
license = "GPL-3.0"
repository = "https://github.com/zzzgydi/clash-verge-service.git"
[[bin]]
name = "clash-verge-service"
path = "src/main.rs"
[[bin]]
name = "install-service"
path = "src/install.rs"
[[bin]]
name = "uninstall-service"
path = "src/uninstall.rs"
[dependencies]
anyhow = "1.0.98"
log = "0.4.27"
log4rs = "1.3"
once_cell = "1.21.3"
serde_json = "1.0.138"
parking_lot = "0.12"
windows-service = "0.8.0"
tokio = { version = "1.45.0", features = ["full"] }
serde = { version = "1.0.217", features = ["derive"] }
sysinfo = "0.37.0"
libc = "0.2.172"
hmac = "0.12.1"
sha2 = "0.10.9"
hex = "0.4.3"
uuid = "1.3.0"
futures = "0.3.31"
winapi = { version = "0.3", features = ["namedpipeapi", "handleapi", "winbase", "winnt", "winerror", "errhandlingapi", "accctrl", "aclapi", "securitybaseapi", "minwinbase", "wingdi"] }
interprocess = { version = "2.2.3", features = ["tokio"] }
encoding_rs = "0.8.33"
env_logger = "0.11.8"
[target.'cfg(target_os = "linux")'.dependencies]
openssl = { version = "0.10.72", features = ["vendored"] }
[target.'cfg(target_os = "macos")'.dependencies]
interfaces = "0.0.9"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"