icx-proxy 0.11.1

CLI tool to create an HTTP proxy to the Internet Computer.
/// The primary container for errors
#[derive(thiserror::Error, Debug)]
pub enum ErrorFactory {
    /// The body payload was too large
    #[error(r#"The body payload was too large"#)]
    PayloadTooLarge,
    /// The body failed to be read
    #[error(r#"Failed to read body: "{0}""#)]
    BodyReadFailed(String),
}