forked from cadey/maj
fix
This commit is contained in:
parent
8984355c4e
commit
70074e0075
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## 0.4.1
|
||||
|
||||
Oops
|
||||
|
||||
## 0.4.0
|
||||
|
||||
Tokio has been somewhat purged.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "maj"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Christine Dodrill <me@christine.website>"]
|
||||
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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue