From 14e5f89a0e0426f49e4bd2f8006e94687968a4c2 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 28 Jun 2023 23:04:50 +0200 Subject: [PATCH] Move memmap2 in the root workpace --- Cargo.toml | 3 ++- src/uu/tac/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d7619142..ed9971d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ # coreutils (uutils) # * see the repository LICENSE, README, and CONTRIBUTING files for more information -# spell-checker:ignore (libs) libselinux gethostid procfs bigdecimal kqueue fundu mangen datetime uuhelp +# spell-checker:ignore (libs) libselinux gethostid procfs bigdecimal kqueue fundu mangen datetime uuhelp memmap [package] name = "coreutils" @@ -292,6 +292,7 @@ lscolors = { version = "0.14.0", default-features = false, features = [ "nu-ansi-term", ] } memchr = "2" +memmap2 = "0.7" nix = { version = "0.26", default-features = false } nom = "7.1.3" notify = { version = "=6.0.1", features = ["macos_kqueue"] } diff --git a/src/uu/tac/Cargo.toml b/src/uu/tac/Cargo.toml index 4455ebe13..32682facd 100644 --- a/src/uu/tac/Cargo.toml +++ b/src/uu/tac/Cargo.toml @@ -18,7 +18,7 @@ path = "src/tac.rs" [dependencies] memchr = { workspace = true } -memmap2 = "0.7" +memmap2 = { workspace = true } regex = { workspace = true } clap = { workspace = true } uucore = { workspace = true }