diff --git a/Cargo.toml b/Cargo.toml index 47c7421..f5ecd63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-backoff" -version = "0.1.0" +version = "0.1.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/lib.rs b/src/lib.rs index 0bcb2c0..eda4003 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ pub enum ReqwestBackoffError { #[error("Reqwest error")] Reqwest(#[from] Error), #[error("Other error")] - Other(#[from] Box), + Other(#[from] Box), #[error("Backoff error after {backoff_attempts} attempts")] BackoffExceeded { backoff_attempts: u32 }, }