Skip to content

Commit

Permalink
Release v0.16.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Oct 19, 2019
1 parent d0ec661 commit 735d032
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r2d2_postgres"
version = "0.15.0-rc.1"
version = "0.16.0-alpha.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -10,5 +10,4 @@ keywords = ["postgres", "sql", "pool", "database"]

[dependencies]
r2d2 = "0.8"
postgres = "0.16.0-rc.1"
tokio-postgres = "0.4.0-rc.2"
postgres = "=0.17.0-alpha.1"
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ pub use postgres;
pub use r2d2;

use postgres::tls::{MakeTlsConnect, TlsConnect};
use postgres::{Client, Config, Error};
use postgres::{Client, Config, Error, Socket};
use r2d2::ManageConnection;
use tokio_postgres::Socket;

/// An `r2d2::ManageConnection` for `postgres::Client`s.
///
Expand Down

0 comments on commit 735d032

Please sign in to comment.