File tree Expand file tree Collapse file tree 3 files changed +19
-5
lines changed Expand file tree Collapse file tree 3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -247,3 +247,12 @@ jobs:
247
247
# cannot test sqlite yet as that crate
248
248
# as broken min-version dependencies as well
249
249
run : cargo +1.84.0 minimal-versions check -p diesel-async --features "postgres bb8 deadpool mobc"
250
+ all_features_build :
251
+ name : Check all feature combination build
252
+ runs-on : ubuntu-latest
253
+ steps :
254
+ - uses : actions/checkout@v4
255
+ - uses : dtolnay/rust-toolchain@stable
256
+ - uses : taiki-e/install-action@cargo-hack
257
+ - name : Check feature combinations
258
+ run : cargo hack check --feature-powerset --no-dev-deps --depth 2
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.6.1] - 2025-07-03
10
+
11
+ * Fix features for some dependencies
12
+
9
13
## [ 0.6.0] - 2025-07-02
10
14
11
15
* Allow to control the statement cache size
@@ -96,4 +100,5 @@ in the pool should be checked if they are still valid
96
100
[ 0.5.1 ] : https://github.com/weiznich/diesel_async/compare/v0.5.0...v0.5.1
97
101
[ 0.5.2 ] : https://github.com/weiznich/diesel_async/compare/v0.5.1...v0.5.2
98
102
[ 0.6.0 ] : https://github.com/weiznich/diesel_async/compare/v0.5.2...v0.6.0
99
- [ Unreleased ] : https://github.com/weiznich/diesel_async/compare/v0.5.0...main
103
+ [ 0.6.1 ] : https://github.com/weiznich/diesel_async/compare/v0.6.0...v0.6.1
104
+ [ Unreleased ] : https://github.com/weiznich/diesel_async/compare/v0.6.1...main
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " diesel-async"
3
- version = " 0.6.0 "
3
+ version = " 0.6.1 "
4
4
authors = [" Georg Semmler <github@weiznich.de>" ]
5
5
edition = " 2021"
6
6
autotests = false
@@ -72,11 +72,11 @@ mysql = [
72
72
postgres = [" diesel/postgres_backend" , " tokio-postgres" , " tokio" , " tokio/rt" ]
73
73
sqlite = [" diesel/sqlite" , " sync-connection-wrapper" ]
74
74
sync-connection-wrapper = [" tokio/rt" ]
75
- async-connection-wrapper = [" tokio/net" ]
75
+ async-connection-wrapper = [" tokio/net" , " tokio/rt " ]
76
76
pool = []
77
77
r2d2 = [" pool" , " diesel/r2d2" ]
78
- bb8 = [" pool" , " dep:bb8" , " dep:async-trait " ]
79
- mobc = [" pool" , " dep:mobc" ]
78
+ bb8 = [" pool" , " dep:bb8" ]
79
+ mobc = [" pool" , " dep:mobc" , " dep:async-trait " , " tokio/sync " ]
80
80
deadpool = [" pool" , " dep:deadpool" ]
81
81
82
82
[[test ]]
You can’t perform that action at this time.
0 commit comments