mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Make EncodeError Send + Sync (#306)
This commit is contained in:
parent
661c5ea1fa
commit
b15f393140
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue