proxyconfig 0.1.0

This is a simple library to help you get the proxy configuration from the system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env just --justfile

linux:
    cross build --target x86_64-unknown-linux-musl --release

mac:
    cross build --target x86_64-apple-darwin --release

windows:
    cross build --target x86_64-pc-windows-gnu --release

release: mac linux windows