From 1b291cc69697c71909b03fb198b01ee436d6069d Mon Sep 17 00:00:00 2001 From: sebadob Date: Thu, 29 Aug 2024 11:16:13 +0200 Subject: [PATCH 1/2] fix minimal versions check --- Cargo.toml | 3 +++ openraft/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 8450526e9..9e417c0b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,6 +51,9 @@ tracing-futures = "0.2.4" tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } validit = { version = "0.2.2" } +# make minimal versions happy +rust_decimal = "1.17" + [workspace] resolver = "2" diff --git a/openraft/Cargo.toml b/openraft/Cargo.toml index cdc5fe670..142c12073 100644 --- a/openraft/Cargo.toml +++ b/openraft/Cargo.toml @@ -33,6 +33,9 @@ tracing = { workspace = true } tracing-futures = { workspace = true } validit = { workspace = true } +# make minimal versions happy +rust_decimal = { workspace = true } + [dev-dependencies] anyhow = { workspace = true } From cdc13dfaa91e613d3fcd3d1bcde636e5ab10763a Mon Sep 17 00:00:00 2001 From: sebadob Date: Thu, 29 Aug 2024 11:16:13 +0200 Subject: [PATCH 2/2] Fix: minimal versions check --- Cargo.toml | 3 +++ openraft/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 8450526e9..a21f240db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,6 +51,9 @@ tracing-futures = "0.2.4" tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } validit = { version = "0.2.2" } +# make minimal versions happy +rust_decimal = "1.15" + [workspace] resolver = "2" diff --git a/openraft/Cargo.toml b/openraft/Cargo.toml index cdc5fe670..142c12073 100644 --- a/openraft/Cargo.toml +++ b/openraft/Cargo.toml @@ -33,6 +33,9 @@ tracing = { workspace = true } tracing-futures = { workspace = true } validit = { workspace = true } +# make minimal versions happy +rust_decimal = { workspace = true } + [dev-dependencies] anyhow = { workspace = true }