From 71a4321802a37604067d10a6e687b4537207e619 Mon Sep 17 00:00:00 2001 From: sebadob Date: Thu, 29 Aug 2024 12:20:26 +0200 Subject: [PATCH 1/2] fix: failing minimal-versions check for `rust_decimal` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5fdca50..9b87cdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ utf8-width = "0.1" serde = { version = "1", default-features = false, features = ["alloc"], optional = true } rocket = { version = "0.5", optional = true } -rust_decimal = { version = "1", default-features = false, optional = true } +rust_decimal = { version = "1.17", default-features = false, optional = true } [dev-dependencies] serde_json = "1" From 2720ea3b752738b4ef4c88fd9422a775495e0be3 Mon Sep 17 00:00:00 2001 From: sebadob Date: Thu, 29 Aug 2024 12:37:12 +0200 Subject: [PATCH 2/2] reduce `rust_decimal` down to `1.15` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9b87cdd..ed0a326 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ utf8-width = "0.1" serde = { version = "1", default-features = false, features = ["alloc"], optional = true } rocket = { version = "0.5", optional = true } -rust_decimal = { version = "1.17", default-features = false, optional = true } +rust_decimal = { version = "1.15", default-features = false, optional = true } [dev-dependencies] serde_json = "1"