sark-core 0.10.0

the L7 layer for dope
Documentation
mod body;
mod chunked;
mod covariance;
mod direct;
mod encoded;
mod fixed;
mod header;
mod header_name;
mod hot;
mod mono;
mod never_stream;
mod owned_shape;
mod response;
mod serve;
mod shape;
mod static_response;
mod stream;
mod wire_emit;

pub use body::Body;
pub use chunked::Chunked;
pub use direct::{
    DEFAULT_HEADER_CAPACITY, HeadInner, HeaderItem, HeaderNameToken, HeaderStaticValueToken,
    HeaderValueInner, Headers, InlineHeaderValue, ResponsePlan,
};
pub use encoded::{EncodedBody, EncodedResponse};
pub use fixed::FixedResponse;
pub use header::HeaderList;
pub use header_name::HeaderNameRef;
pub use hot::{HotBodyInner, HotHeadInner, TextBody, TextItem};
pub use mono::MonoResponseInner;
pub use never_stream::NeverStream;
pub use owned_shape::OwnedShape;
pub use response::Response;
pub use serve::Serve;
pub use shape::{CacheTemplate, Egress, Preparation, Prepared, ResponseView, Shape};
pub use static_response::StaticResponseInner;
pub use stream::{CHUNK_TERMINATOR, IterStream, Stream};