Skip to content

werdl/quickhttp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

Simple HTTP client in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages