1// This is free and unencumbered software released into the public domain.
23#![no_std]
4#![forbid(unsafe_code)]
5//#![allow(unused)]
67extern crate alloc;
89#[cfg(feature = "std")]
10extern crate std;
1112mod error;
13pub use error::*;
1415mod request;
16pub use request::*;