forked from cg31/shadowsocks-windows-gui-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (35 loc) · 1.23 KB
/
Cargo.toml
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
[package]
name = "russ"
version = "0.1.1"
edition = "2021"
description = "Shadowsocks GUI"
license = "MIT"
build = "build.rs"
[[bin]]
name = "russ"
path = "src/main.rs"
[dependencies]
#native-windows-gui = { git = "https://github.com/gabdube/native-windows-gui.git", branch = "master", features = [ "all" ] }
#native-windows-derive = { git = "https://github.com/gabdube/native-windows-gui.git", branch = "master" }
native-windows-gui = "1.0.12"
native-windows-derive = "1.0.4"
winapi = { version = "0.3.9", features = ["winuser", "wingdi"] }
winreg = "0.10.1"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde_derive = "1.0.136"
anyhow = "1.0.56"
log = "0.4.16"
log4rs = "1.0.0"
futures = "0.3.21"
tokio = { version = "1.17.0", features = ["full"] }
#shadowsocks = { git = "https://github.com/shadowsocks/shadowsocks-rust.git", branch = "master" }
#shadowsocks-service = { git = "https://github.com/shadowsocks/shadowsocks-rust.git", branch = "master", features = ["local"] }
shadowsocks = "1.14.1"
shadowsocks-service = { version = "1.14.2", features = ["local"] }
[build-dependencies]
winapi = "0.3.9"
winres = "0.1.12"
[package.metadata.winres]
OriginalFilename = "russ.exe"
LegalCopyright = "Open Source MIT"