no-std-http 0.1.1

A library of common HTTP types design for no std environment
Documentation
1
2
3
4
5
use alloc::collections::BTreeMap;
use alloc::string::String;
use smallvec::SmallVec;

pub type HeaderMap = BTreeMap<String, SmallVec<[String; 1]>>;