barehttp 0.1.0

Blocking HTTP/1.1 client for no_std + alloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0603]: module `parser` is private
 --> tests/ui/fail/private_parser.rs:3:21
  |
3 |   let _ = barehttp::parser::has_complete_headers(b"");
  |                     ^^^^^^  -------------------- function `has_complete_headers` is not publicly re-exported
  |                     |
  |                     private module
  |
note: the module `parser` is defined here
 --> src/lib.rs
  |
  | pub(crate) mod parser;
  | ^^^^^^^^^^^^^^^^^^^^^