diff --git a/scylla-cql/Cargo.toml b/scylla-cql/Cargo.toml index c919ec4787..55f3099332 100644 --- a/scylla-cql/Cargo.toml +++ b/scylla-cql/Cargo.toml @@ -21,7 +21,7 @@ uuid = "1.0" thiserror = "1.0" bigdecimal = "0.2.0" num-bigint = "0.3" -chrono = { version = "0.4.27", default-features = false, optional = true } +chrono = { version = ">= 0.4.27, < 0.4.32", default-features = false, optional = true } lz4_flex = { version = "0.11.1" } async-trait = "0.1.57" serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index adbb51f04a..3156b41b60 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -39,7 +39,7 @@ itertools = "0.11.0" bigdecimal = "0.2.0" num-bigint = "0.3" tracing = "0.1.36" -chrono = { version = "0.4.20", default-features = false, features = ["clock"] } +chrono = { version = ">= 0.4.20, < 0.4.32", default-features = false, features = ["clock"] } openssl = { version = "0.10.32", optional = true } tokio-openssl = { version = "0.6.1", optional = true } arc-swap = "1.3.0"