coreutils 0.0.19

coreutils ~ GNU coreutils (updated); implemented as universal (cross-platform) utils, written in Rust
From 6458815692e1452bdbd532caef5f8f00915b6494 Mon Sep 17 00:00:00 2001
From: Sylvestre Ledru <sylvestre@debian.org>
Date: Thu, 1 Jun 2023 20:38:55 +0200
Subject: [PATCH 4/4] rename help_parser => uuhelp_parser

---
 Cargo.lock                                    | 12 ++++++------
 src/{help_parser => uuhelp_parser}/Cargo.toml |  2 +-
 src/{help_parser => uuhelp_parser}/src/lib.rs |  0
 3 files changed, 7 insertions(+), 7 deletions(-)
 rename src/{help_parser => uuhelp_parser}/Cargo.toml (86%)
 rename src/{help_parser => uuhelp_parser}/src/lib.rs (100%)

diff --git a/Cargo.lock b/Cargo.lock
index f45951917..5048b4aa0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -403,7 +403,6 @@ dependencies = [
  "conv",
  "filetime",
  "glob",
- "help_parser",
  "hex-literal",
  "is-terminal",
  "libc",
@@ -529,6 +528,7 @@ dependencies = [
  "uu_whoami",
  "uu_yes",
  "uucore",
+ "uuhelp_parser",
  "walkdir",
  "zip",
 ]
@@ -1107,10 +1107,6 @@ dependencies = [
  "ahash",
 ]
 
-[[package]]
-name = "help_parser"
-version = "0.0.18"
-
 [[package]]
 name = "hermit-abi"
 version = "0.1.19"
@@ -3430,11 +3426,15 @@ dependencies = [
 name = "uucore_procs"
 version = "0.0.19"
 dependencies = [
- "help_parser",
  "proc-macro2",
  "quote",
+ "uuhelp_parser",
 ]
 
+[[package]]
+name = "uuhelp_parser"
+version = "0.0.18"
+
 [[package]]
 name = "uuid"
 version = "1.2.2"
diff --git a/src/help_parser/Cargo.toml b/src/uuhelp_parser/Cargo.toml
similarity index 86%
rename from src/help_parser/Cargo.toml
rename to src/uuhelp_parser/Cargo.toml
index 2c4080c81..9f4c0d68d 100644
--- a/src/help_parser/Cargo.toml
+++ b/src/uuhelp_parser/Cargo.toml
@@ -1,5 +1,5 @@
 [package]
-name = "help_parser"
+name = "uuhelp_parser"
 version = "0.0.18"
 edition = "2021"
 license = "MIT"
diff --git a/src/help_parser/src/lib.rs b/src/uuhelp_parser/src/lib.rs
similarity index 100%
rename from src/help_parser/src/lib.rs
rename to src/uuhelp_parser/src/lib.rs
-- 
2.39.2