diff --git a/Cargo.toml b/Cargo.toml index 569fc8b..f5fd944 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "vented" description = "Event driven encrypted tcp communicaton" -version = "0.11.1" +version = "0.11.2" authors = ["trivernis "] edition = "2018" readme = "README.md" diff --git a/src/utils/result.rs b/src/utils/result.rs index dc6bc98..8987d0f 100644 --- a/src/utils/result.rs +++ b/src/utils/result.rs @@ -71,3 +71,6 @@ impl From for VentedError { Self::CryptoError(other) } } + +unsafe impl Send for VentedError {} +unsafe impl Sync for VentedError {}