diff --git a/CHANGELOG.md b/CHANGELOG.md index c542d9c..1f8fdff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.4.1 + +Oops + ## 0.4.0 Tokio has been somewhat purged. diff --git a/Cargo.toml b/Cargo.toml index 0fac90b..9aa1405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maj" -version = "0.4.0" +version = "0.4.1" authors = ["Christine Dodrill "] edition = "2018" license = "0BSD" @@ -19,7 +19,7 @@ tokio-rustls = { version = "0.14", features = ["dangerous_configuration"], optio webpki = { version = "0.21.0", optional = true } webpki-roots = { version = "0.20", optional = true } tokio = { version = "0.2", features = ["full"], optional = true } -async-tls = { default-features = false, optional = true, git = "https://github.com/Xe/async-tls" } +async-tls = { default-features = false, optional = true, version = "0" } async-std = { version = "1.6", optional = true } log = "0.4" url = "2" diff --git a/VERSION b/VERSION index 1d0ba9e..267577d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.1 diff --git a/src/server/mod.rs b/src/server/mod.rs index 7d2aba5..1ee016b 100644 --- a/src/server/mod.rs +++ b/src/server/mod.rs @@ -90,7 +90,7 @@ async fn handle_request( let req = Request { url: url, - certs: stream.peer_certificates(), + certs: None, }; handle(h, req, &mut stream, addr).await; }