File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All user visible changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) , as described
5
5
for Rust libraries in [ RFC #1105 ] ( https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md )
6
6
7
+ ## [ Unreleased]
8
+
9
+ * Added type ` diesel_async::pooled_connection::mobc::PooledConnection `
10
+
7
11
## [ 0.4.1] - 2023-09-01
8
12
9
13
* Fixed feature flags for docs.rs
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ use mobc::Manager;
46
46
/// Type alias for using [`mobc::Pool`] with [`diesel-async`]
47
47
pub type Pool < C > = mobc:: Pool < AsyncDieselConnectionManager < C > > ;
48
48
49
+ /// Type alias for using [`mobc::Connection`] with [`diesel-async`]
50
+ pub type PooledConnection < C > = mobc:: Connection < AsyncDieselConnectionManager < C > > ;
51
+
49
52
/// Type alias for using [`mobc::Builder`] with [`diesel-async`]
50
53
pub type Builder < C > = mobc:: Builder < AsyncDieselConnectionManager < C > > ;
51
54
You can’t perform that action at this time.
0 commit comments