Skip to content

Commit daed2d2

Browse files
committed
deps: Upgrade
1 parent f0d4bd6 commit daed2d2

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ version = "0.8.11"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515
[dependencies]
1616
# internal deps
17-
sky-derive = "0.2.3"
17+
sky-derive = "0.2"
1818
# 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+
bb8 = "0.9"
25+
itoa = "1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ assert_eq!(users[0].userid, "user");
6565

6666
## Version support
6767

68-
- Minimum Supported Rust Version (MSRV): 1.51.0
68+
- Minimum Supported Rust Version (MSRV): 1.75.0
6969
- Minimum Supported Skytable Version: 0.8.0
7070

7171
## Features

src/pool.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ impl r2d2::ManageConnection for ConnectionMgrTcp {
108108
}
109109
}
110110

111-
#[async_trait::async_trait]
112111
impl bb8::ManageConnection for ConnectionMgrTcp {
113112
type Connection = ConnectionAsync;
114113
type Error = Error;
@@ -154,7 +153,6 @@ impl r2d2::ManageConnection for ConnectionMgrTls {
154153
}
155154
}
156155

157-
#[async_trait::async_trait]
158156
impl bb8::ManageConnection for ConnectionMgrTls {
159157
type Connection = ConnectionTlsAsync;
160158
type Error = Error;

0 commit comments

Comments
 (0)