barehttp 0.1.0

Blocking HTTP/1.1 client for no_std + alloc
Documentation
1
2
3
4
5
6
7
8
9
//! Config builder constructs a Config.
use barehttp::config::Config;

fn main() {
  let _ = Config::builder()
    .user_agent("ui-test/0.1")
    .max_redirects(0)
    .build();
}