forked from Devolutions/proxy-cfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 845 Bytes
/
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
[package]
name = "proxy_cfg"
version = "0.4.2-snapshot"
edition = "2018"
authors = []
categories = ["network-programming", "os"]
description = "A library to get proxy configuration from the OS."
keywords = ["proxy"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/devolutions/proxy-cfg"
documentation = "https://docs.rs/proxy_cfg"
[badges]
appveyor = { repository = "devolutions/proxy-cfg" }
travis-ci = { repository = "devolutions/proxy-cfg" }
[dependencies]
url = "2"
[dev-dependencies]
tempfile = "3.2"
[features]
default = ["env", "sysconfig_proxy"]
env = []
sysconfig_proxy = []
[target."cfg(windows)".dependencies]
winapi = { version = "0.3", features = ["winnt", "winhttp"] }
winreg = "0.9"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9"
system-configuration-sys = "0.5.0"