Make EncodeError Send + Sync (#306)

This commit is contained in:
Nikolay Kim 2024-03-07 18:17:39 +06:00
parent 661c5ea1fa
commit b15f393140
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [1.1.1] - 2024-03-07
* http: Make EncodeError Send + Sync
## [1.1.0] - 2024-02-07
* http: Add http/1 control service

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "1.1.0"
version = "1.1.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"

View file

@ -69,7 +69,7 @@ pub enum EncodeError {
/// Internal error
#[error("Internal error")]
Internal(Box<dyn error::Error>),
Internal(Box<dyn error::Error + Send + Sync>),
}
/// A set of errors that can occur during parsing HTTP streams