From 2473297391c5ee340204ba632e442c9027cd23a3 Mon Sep 17 00:00:00 2001 From: Emile Fugulin Date: Fri, 14 Jul 2023 18:58:58 -0400 Subject: [PATCH] fix: allow range of versions for dependencies --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5c0bf3f58..87becd25a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,12 +36,12 @@ derivative = { version = "2.2", default-features = false, optional = true } chrono = { version = "0.4", default-features = false, optional = true, features = ["clock"] } postgres-types = { version = "0", default-features = false, optional = true } rust_decimal = { version = "1", default-features = false, optional = true } -bigdecimal = { version = "0.3", default-features = false, optional = true } +bigdecimal = { version = ">=0.3,<0.5", default-features = false, optional = true } uuid = { version = "1", default-features = false, optional = true } proc-macro2 = { version = "1", default-features = false, optional = true } quote = { version = "1", default-features = false, optional = true } time = { version = "0.3", default-features = false, optional = true, features = ["macros", "formatting"] } -ipnetwork = { version = "0.19", default-features = false, optional = true } +ipnetwork = { version = ">=0.19,<0.21", default-features = false, optional = true } mac_address = { version = "1.1", default-features = false, optional = true } ordered-float = { version = "3.4", default-features = false, optional = true }