quickhttp 0.1.1

A simple HTTP client
Documentation
  • Coverage
  • 35.19%
    38 out of 108 items documented1 out of 22 items with examples
  • Size
  • Source code size: 26.64 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.17 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • werdl/quickhttp
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • werdl

quickhttp

A simple HTTP client for Rust, with no dependencies.

GitHub Actions crates.io thetime on docs.rs

Example

let res = Builder::new()
    .uri("http://httpbin.org/ip".to_string())
    .method("GET".to_string())
    .build()
    .unwrap()
    .send()
    .unwrap();


println!("{:?}", res.body);