This commit is contained in:
Steven Fackler 2019-03-04 21:55:37 -08:00
parent 1f80b78f07
commit 0de50abc29
2 changed files with 3 additions and 3 deletions

View File

@ -257,7 +257,7 @@ impl ScramSha256 {
return Err(io::Error::new(
io::ErrorKind::Other,
format!("SCRAM error: {}", e),
))
));
}
ServerFinalMessage::Verifier(verifier) => verifier,
};

View File

@ -1,11 +1,11 @@
use fallible_iterator::FallibleIterator;
use futures::{Async, Future, Poll, Stream};
use std::io::{self, Read};
use tokio_postgres::tls::{MakeTlsConnect, TlsConnect};
use tokio_postgres::types::{ToSql, Type};
use tokio_postgres::Error;
#[cfg(feature = "runtime")]
use tokio_postgres::{Socket};
use tokio_postgres::tls::{MakeTlsConnect, TlsConnect};
use tokio_postgres::Socket;
#[cfg(feature = "runtime")]
use crate::Config;