barehttp 0.1.0

Blocking HTTP/1.1 client for no_std + alloc
Documentation
1
2
3
4
5
6
7
8
//! Headers insert / get.
use barehttp::Headers;

fn main() {
  let mut h = Headers::new();
  h.insert("Accept", "*/*");
  let _ = h.get("accept");
}