Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cargo: switch to 2018 edition #76

Merged
merged 2 commits into from
Aug 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "hyper-rustls"
version = "0.17.0"
edition = "2018"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
2 changes: 1 addition & 1 deletion src/connector.rs
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ use std::{fmt, io};
use tokio_rustls::TlsConnector;
use webpki::{DNSName, DNSNameRef};

use stream::MaybeHttpsStream;
use crate::stream::MaybeHttpsStream;

/// A Connector for the `https` scheme.
#[derive(Clone)]
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -40,5 +40,5 @@ extern crate webpki_roots;
mod connector;
mod stream;

pub use connector::HttpsConnector;
pub use stream::MaybeHttpsStream;
pub use crate::connector::HttpsConnector;
pub use crate::stream::MaybeHttpsStream;