Skip to content

Commit 735d032

Browse files
committed
Release v0.16.0-alpha.1
1 parent d0ec661 commit 735d032

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2d2_postgres"
3-
version = "0.15.0-rc.1"
3+
version = "0.16.0-alpha.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -10,5 +10,4 @@ keywords = ["postgres", "sql", "pool", "database"]
1010

1111
[dependencies]
1212
r2d2 = "0.8"
13-
postgres = "0.16.0-rc.1"
14-
tokio-postgres = "0.4.0-rc.2"
13+
postgres = "=0.17.0-alpha.1"

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ pub use postgres;
55
pub use r2d2;
66

77
use postgres::tls::{MakeTlsConnect, TlsConnect};
8-
use postgres::{Client, Config, Error};
8+
use postgres::{Client, Config, Error, Socket};
99
use r2d2::ManageConnection;
10-
use tokio_postgres::Socket;
1110

1211
/// An `r2d2::ManageConnection` for `postgres::Client`s.
1312
///

0 commit comments

Comments
 (0)