@@ -14,27 +14,27 @@ rust-version = "1.78.0"
14
14
15
15
[dependencies ]
16
16
diesel = { version = " ~2.2.0" , default-features = false , features = [
17
- " i-implement-a-third-party-backend-and-opt-into-breaking-changes" ,
17
+ " i-implement-a-third-party-backend-and-opt-into-breaking-changes" ,
18
18
] }
19
19
async-trait = " 0.1.66"
20
20
futures-channel = { version = " 0.3.17" , default-features = false , features = [
21
- " std" ,
22
- " sink" ,
21
+ " std" ,
22
+ " sink" ,
23
23
], optional = true }
24
24
futures-util = { version = " 0.3.17" , default-features = false , features = [
25
- " std" ,
26
- " sink" ,
25
+ " std" ,
26
+ " sink" ,
27
27
] }
28
28
tokio-postgres = { version = " 0.7.10" , optional = true }
29
29
tokio = { version = " 1.26" , optional = true }
30
30
mysql_async = { version = " 0.34" , optional = true , default-features = false , features = [
31
- " minimal-rust" ,
31
+ " minimal-rust" ,
32
32
] }
33
33
mysql_common = { version = " 0.32" , optional = true , default-features = false }
34
34
35
- bb8 = { version = " 0.8 " , optional = true }
35
+ bb8 = { version = " 0.9 " , optional = true }
36
36
deadpool = { version = " 0.12" , optional = true , default-features = false , features = [
37
- " managed" ,
37
+ " managed" ,
38
38
] }
39
39
mobc = { version = " >=0.7,<0.10" , optional = true }
40
40
scoped-futures = { version = " 0.1" , features = [" std" ] }
@@ -50,11 +50,11 @@ assert_matches = "1.0.1"
50
50
[features ]
51
51
default = []
52
52
mysql = [
53
- " diesel/mysql_backend" ,
54
- " mysql_async" ,
55
- " mysql_common" ,
56
- " futures-channel" ,
57
- " tokio" ,
53
+ " diesel/mysql_backend" ,
54
+ " mysql_async" ,
55
+ " mysql_common" ,
56
+ " futures-channel" ,
57
+ " tokio" ,
58
58
]
59
59
postgres = [" diesel/postgres_backend" , " tokio-postgres" , " tokio" , " tokio/rt" ]
60
60
sqlite = [" diesel/sqlite" , " sync-connection-wrapper" ]
@@ -73,24 +73,24 @@ harness = true
73
73
74
74
[package .metadata .docs .rs ]
75
75
features = [
76
- " postgres" ,
77
- " mysql" ,
78
- " sqlite" ,
79
- " deadpool" ,
80
- " bb8" ,
81
- " mobc" ,
82
- " async-connection-wrapper" ,
83
- " sync-connection-wrapper" ,
84
- " r2d2" ,
76
+ " postgres" ,
77
+ " mysql" ,
78
+ " sqlite" ,
79
+ " deadpool" ,
80
+ " bb8" ,
81
+ " mobc" ,
82
+ " async-connection-wrapper" ,
83
+ " sync-connection-wrapper" ,
84
+ " r2d2" ,
85
85
]
86
86
no-default-features = true
87
87
rustc-args = [" --cfg" , " docsrs" ]
88
88
rustdoc-args = [" --cfg" , " docsrs" ]
89
89
90
90
[workspace ]
91
91
members = [
92
- " ." ,
93
- " examples/postgres/pooled-with-rustls" ,
94
- " examples/postgres/run-pending-migrations-with-rustls" ,
95
- " examples/sync-wrapper" ,
92
+ " ." ,
93
+ " examples/postgres/pooled-with-rustls" ,
94
+ " examples/postgres/run-pending-migrations-with-rustls" ,
95
+ " examples/sync-wrapper" ,
96
96
]
0 commit comments