fix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-07-27 21:43:31 -04:00
parent 8984355c4e
commit 70074e0075
4 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.4.1
Oops
## 0.4.0 ## 0.4.0
Tokio has been somewhat purged. Tokio has been somewhat purged.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "maj" name = "maj"
version = "0.4.0" version = "0.4.1"
authors = ["Christine Dodrill <me@christine.website>"] authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018" edition = "2018"
license = "0BSD" license = "0BSD"
@ -19,7 +19,7 @@ tokio-rustls = { version = "0.14", features = ["dangerous_configuration"], optio
webpki = { version = "0.21.0", optional = true } webpki = { version = "0.21.0", optional = true }
webpki-roots = { version = "0.20", optional = true } webpki-roots = { version = "0.20", optional = true }
tokio = { version = "0.2", features = ["full"], 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 } async-std = { version = "1.6", optional = true }
log = "0.4" log = "0.4"
url = "2" url = "2"

View File

@ -1 +1 @@
0.4.0 0.4.1

View File

@ -90,7 +90,7 @@ async fn handle_request(
let req = Request { let req = Request {
url: url, url: url,
certs: stream.peer_certificates(), certs: None,
}; };
handle(h, req, &mut stream, addr).await; handle(h, req, &mut stream, addr).await;
} }