docs.rs failed to build winproxy-0.6.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
winproxy
Change Windows system proxy settings
Installation
Using Cargo
cargo install winproxy-cli
Using Go
go install github.com/fhluo/winproxy/go/cmd/winproxy@latest
Download Pre-built Binaries
Visit the Releases page to download pre-built binaries.
Usage
View Current Proxy Settings
winproxy
This will display your current proxy configuration in a formatted table.
Enable/Disable Proxy
# Enable proxy
winproxy -p true
# Disable proxy
winproxy -p false
Set Proxy Server
# Set HTTP proxy
winproxy -p true --proxy-address "127.0.0.1:8080"
# Set proxy with bypass list (semicolon-separated)
winproxy -p true --proxy-address "127.0.0.1:8080" --bypass-list "localhost;127.*;<local>"
Library Usage
Add winproxy to your Cargo.toml:
[]
= "0.6"
Example usage:
use DefaultConnectionSettings;