Skip to content

Commit

Permalink
deps: Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Dec 14, 2024
1 parent f0d4bd6 commit daed2d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
17 changes: 8 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ version = "0.8.11"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# internal deps
sky-derive = "0.2.3"
sky-derive = "0.2"
# external deps
tokio = { version = "1.40.0", features = ["full"] }
native-tls = "0.2.12"
tokio-native-tls = "0.3.1"
rand = "0.8.5"
r2d2 = "0.8.10"
async-trait = "0.1.82"
bb8 = "0.8.5"
itoa = "1.0.11"
tokio = { version = "1", features = ["full"] }
native-tls = "0.2"
tokio-native-tls = "0.3"
rand = "0.8"
r2d2 = "0.8"
bb8 = "0.9"
itoa = "1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ assert_eq!(users[0].userid, "user");

## Version support

- Minimum Supported Rust Version (MSRV): 1.51.0
- Minimum Supported Rust Version (MSRV): 1.75.0
- Minimum Supported Skytable Version: 0.8.0

## Features
Expand Down
2 changes: 0 additions & 2 deletions src/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ impl r2d2::ManageConnection for ConnectionMgrTcp {
}
}

#[async_trait::async_trait]
impl bb8::ManageConnection for ConnectionMgrTcp {
type Connection = ConnectionAsync;
type Error = Error;
Expand Down Expand Up @@ -154,7 +153,6 @@ impl r2d2::ManageConnection for ConnectionMgrTls {
}
}

#[async_trait::async_trait]
impl bb8::ManageConnection for ConnectionMgrTls {
type Connection = ConnectionTlsAsync;
type Error = Error;
Expand Down

0 comments on commit daed2d2

Please sign in to comment.