diff --git a/Cargo.lock b/Cargo.lock index 7d9995659..3115c0947 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1199,9 +1199,9 @@ dependencies = [ [[package]] name = "notify" -version = "5.0.0-pre.16" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "530f6314d6904508082f4ea424a0275cf62d341e118b313663f266429cb19693" +checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a" dependencies = [ "bitflags", "crossbeam-channel", @@ -2624,7 +2624,7 @@ dependencies = [ "itertools", "quick-error", "regex", - "time 0.3.14", + "time", "uucore", ] diff --git a/src/uu/tail/Cargo.toml b/src/uu/tail/Cargo.toml index dd5747cc4..5ceda3495 100644 --- a/src/uu/tail/Cargo.toml +++ b/src/uu/tail/Cargo.toml @@ -19,7 +19,7 @@ path = "src/tail.rs" clap = { version = "3.2", features = ["wrap_help", "cargo"] } libc = "0.2.132" memchr = "2.5.0" -notify = { version = "=5.0.0-pre.16", features=["macos_kqueue"]} +notify = { version = "=5.0.0", features=["macos_kqueue"]} uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["ringbuffer", "lines"] } same-file = "1.0.6"