Switch to Rust 2018 edition

This commit is contained in:
Jonas Herzig 2020-04-03 20:55:59 +02:00
parent 0949807830
commit 8bdd654952
4 changed files with 11 additions and 27 deletions

View file

@ -7,7 +7,7 @@ pub enum Error {
Io(std::io::Error),
ServerTls(native_tls::Error),
ClientConnection(tungstenite::Error),
Misc(Box<std::error::Error>),
Misc(Box<dyn std::error::Error>),
}
impl Error {