File tree 3 files changed +10
-12
lines changed
3 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ version = "0.8.11"
14
14
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15
15
[dependencies ]
16
16
# internal deps
17
- sky-derive = " 0.2.3 "
17
+ sky-derive = " 0.2"
18
18
# external deps
19
- tokio = { version = " 1.40.0 " , features = [" full" ] }
20
- native-tls = " 0.2.12 "
21
- tokio-native-tls = " 0.3.1 "
22
- rand = " 0.8.5 "
23
- r2d2 = " 0.8.10 "
24
- async-trait = " 0.1.82 "
25
- bb8 = " 0.8.5 "
26
- itoa = " 1.0.11 "
19
+ tokio = { version = " 1" , features = [" full" ] }
20
+ native-tls = " 0.2"
21
+ tokio-native-tls = " 0.3"
22
+ rand = " 0.8"
23
+ r2d2 = " 0.8"
24
+ async-trait = " 0.1"
25
+ bb8 = " 0.9 "
26
+ itoa = " 1"
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ assert_eq!(users[0].userid, "user");
65
65
66
66
## Version support
67
67
68
- - Minimum Supported Rust Version (MSRV): 1.51 .0
68
+ - Minimum Supported Rust Version (MSRV): 1.75 .0
69
69
- Minimum Supported Skytable Version: 0.8.0
70
70
71
71
## Features
Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ impl r2d2::ManageConnection for ConnectionMgrTcp {
108
108
}
109
109
}
110
110
111
- #[ async_trait:: async_trait]
112
111
impl bb8:: ManageConnection for ConnectionMgrTcp {
113
112
type Connection = ConnectionAsync ;
114
113
type Error = Error ;
@@ -154,7 +153,6 @@ impl r2d2::ManageConnection for ConnectionMgrTls {
154
153
}
155
154
}
156
155
157
- #[ async_trait:: async_trait]
158
156
impl bb8:: ManageConnection for ConnectionMgrTls {
159
157
type Connection = ConnectionTlsAsync ;
160
158
type Error = Error ;
You can’t perform that action at this time.
0 commit comments