postgres_rustls

Rustls-based library for postgres.
git clone https://git.philomathiclife.com/repos/postgres_rustls
Log | Files | Refs | README

commit db0437e839f6486c57f82face9a36f72c3d4492f
parent 8bfad810c8a5c2ba2952cf1221c6cf602432e731
Author: Zack Newman <zack@philomathiclife.com>
Date:   Thu,  3 Apr 2025 13:58:13 -0600

msrv

Diffstat:
MCargo.toml | 12++++++------
Msrc/lib.rs | 1+
2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -9,8 +9,8 @@ license = "MIT OR Apache-2.0" name = "postgres_rustls" readme = "README.md" repository = "https://git.philomathiclife.com/repos/postgres_rustls/" -rust-version = "1.85.0" -version = "0.1.1" +rust-version = "1.86.0" +version = "0.1.2" [package.metadata.docs.rs] all-features = true @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] sha2 = { version = "0.10.8", default-features = false } -tokio = { version = "1.43.0", default-features = false } +tokio = { version = "1.44.1", default-features = false } tokio-postgres = { version = "0.7.13", default-features = false } -tokio-rustls = { version = "0.26.1", default-features = false } +tokio-rustls = { version = "0.26.2", default-features = false } [dev-dependencies] -tokio = { version = "1.43.0", default-features = false, features = ["rt"] } -tokio-rustls = { version = "0.26.1", default-features = false, features = ["ring"] } +tokio = { version = "1.44.1", default-features = false, features = ["rt"] } +tokio-rustls = { version = "0.26.2", default-features = false, features = ["ring"] } ### FEATURES ################################################################# diff --git a/src/lib.rs b/src/lib.rs @@ -37,6 +37,7 @@ clippy::implicit_return, clippy::missing_trait_methods, clippy::multiple_crate_versions, + clippy::return_and_then, clippy::single_call_fn, reason = "noisy, opinionated, and likely doesn't prevent bugs or improve APIs" )]