crates.io docs.rs license

sysreq

Simple, virtually-zero-dependencies HTTP client wrapping a system client. Make HTTP requests without breaking the bank!

"Virtually-zero" means no unnecessary runtime dependencies. The only runtime dependency, other than std, is URL validation, which is required for security reasons.

Supported Backends

Usage

In your Cargo.toml:

toml [dependencies] sysreq = "0"

In your code:

rust let html = sysreq::get("https://www.rust-lang.org/").unwrap(); println!("{}", String::from_utf8_lossy(&html));