From aca63ebd545cd88538d0126881f0d92a7999bf0b Mon Sep 17 00:00:00 2001 From: Marcus Geiger Date: Sun, 21 Feb 2021 09:17:40 +0100 Subject: [PATCH] Bump dependencies for compatibility with newer Postgres crates FromSql and ToSql traits are different with newer dependencies. - Bump postgres-protocol to 0.6 - Bump postgres-types to 0.2 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 47e9644..f1f9fc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres_range" -version = "0.10.0" +version = "0.11.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT" @@ -12,8 +12,8 @@ documentation = "https://sfackler.github.io/rust-postgres-range/doc/v0.9.0/postg with-chrono-0_4 = ["chrono-04", "postgres-types/with-chrono-0_4"] [dependencies] -postgres-protocol = "0.5" -postgres-types = "0.1" +postgres-protocol = "0.6" +postgres-types = "0.2" chrono-04 = { version = "0.4", package = "chrono", optional = true } [dev-dependencies]