1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

change/uutils ~ allow (almost) any name for the multi-binary container

- final multi-binary will now function correctly with any binary/executable name
- multi-binary container acts as the specified util IF EITHER ...
  1. the binary/executable name exactly matches the name of an applet/util
  2. the binary/exectuable name matches <PREFIX><UTIL_NAME> pattern
     * where the PREFIX is any string ending in a non-alphanumeric character
This commit is contained in:
Roy Ivy III 2020-05-03 15:18:48 -05:00
parent 100fc8d1e0
commit bebf36bffb
2 changed files with 42 additions and 41 deletions

View file

@ -214,7 +214,9 @@ feat_os_windows_legacy = [
[workspace]
[dependencies]
uucore = "0.0.2"
lazy_static = { version="1.3" }
uucore = { version="0.0.2" }
# * uutils
arch = { optional=true, path="src/uu/arch" }
base32 = { optional=true, path="src/uu/base32" }
base64 = { optional=true, path="src/uu/base64" }
@ -315,7 +317,6 @@ _backtrace = { version=">= 0.3.3, <= 0.3.30", package="backtrace" }
[dev-dependencies]
filetime = "0.2"
lazy_static = "1.3"
libc = "0.2"
rand = "0.6"
regex = "1.0"