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
|
From: Matthias Geiger <werdahias@riseup.net>
Date: Thu, 18 Sep 2025 11:55:58 -0400
Subject: Replace rustdoc-stripper dependency to allow build
Forwarded: not-needed
Last-Update: 2025-07-26
---
Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index e6da0e6..9a27f5e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,15 +12,15 @@ edition = "2021"
[dependencies]
bitflags = "2.9"
-getopts = "0.2.24"
+getopts = "0.2"
getter_rules = { package = "fix-getters-rules", version = "0.3.0", default-features = false }
-xml-rs = "1.0"
+xml-rs = "0.8"
toml = { version = "0.8" , features = ["preserve_order"] }
env_logger = { version = "0.11", default-features = false }
log = "0.4"
regex = "1.11"
hprof = "0.1"
-rustdoc-stripper = { git = "https://github.com/GuillaumeGomez/rustdoc-stripper" }
+rustdoc-stripper = "0.1.12"
[profile.release]
codegen-units = 4
|