-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (42 loc) · 1.06 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
[package]
name = "socks2"
version = "0.4.0"
edition = "2021"
authors = ["Steven Fackler <sfackler@gmail.com>", "harmless-tech"]
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "SOCKS proxy clients"
repository = "https://github.com/harmless-tech/rust-socks2"
categories = ["web-programming::http-client"]
keywords = ["socks", "proxy", "client"]
rust-version = "1.65"
include = [
"src/",
"Cargo.lock",
"Cargo.toml",
"CHANGELOG.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
]
[dependencies]
[target.'cfg(unix)'.dependencies]
libc = { version = "0.2", optional = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", optional = true, features = ["Win32_System_IO", "Win32_Networking_WinSock"] }
[features]
default = ["client", "bind", "udp"]
client = []
bind = ["client"]
udp = ["client", "libc", "windows-sys"]
[package.metadata.docs.rs]
all-features = true
[lints.clippy]
cargo = "deny"
correctness = "deny"
complexity = "deny"
nursery = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"
suspicious = "deny"