no_std_http/
header.rs

1use alloc::collections::BTreeMap;
2use alloc::string::String;
3use smallvec::SmallVec;
4
5pub type HeaderMap = BTreeMap<String, SmallVec<[String; 1]>>;