1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Description: accept older minor versions of crate rust_decimal
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1116958
Forwarded: not-needed
Last-Update: 2025-10-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/shex_ast/Cargo.toml
+++ b/shex_ast/Cargo.toml
@@ -18,7 +18,7 @@
itertools.workspace = true
void = "1"
thiserror = "2.0"
-rust_decimal = "1.38"
+rust_decimal = "1.36"
serde_json.workspace = true
const_format = "0.2"
tracing.workspace = true
--- a/shex_compact/Cargo.toml
+++ b/shex_compact/Cargo.toml
@@ -21,7 +21,7 @@
thiserror.workspace = true
tracing = { workspace = true }
colored.workspace = true
-rust_decimal = "1.38"
+rust_decimal = "1.36"
pretty = "0.12.3"
lazy-regex = "3.4"
--- a/sparql_service/Cargo.toml
+++ b/sparql_service/Cargo.toml
@@ -28,7 +28,7 @@
oxigraph = { workspace = true, default-features = false }
oxrdf = { workspace = true, features = ["oxsdatatypes", "rdf-12"] }
oxrdfio = { workspace = true, features = ["rdf-12"] }
-rust_decimal = "1.38"
+rust_decimal = "1.36"
serde.workspace = true
serde_json.workspace = true
sparesults = { workspace = true }
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -98,7 +98,7 @@
oxttl = { version = "0.2.0", features = ["rdf-12"] }
regex = "1.11"
reqwest = { version = "0.12", features = ["blocking", "json"] }
-rust_decimal = "1.38"
+rust_decimal = "1.36"
rust_decimal_macros = "1.38"
sparesults = { version = "0.3.0", features = ["sparql-12"] }
spargebra = { version = "0.4.0", features = ["sparql-12"] }
|