Remove the unused feature from notify. We actually moved notify
into a single crate (as opposed to all over the place) in
816ca7e651

As of this commit, build_rust runs without warnings.
This commit is contained in:
Herbert Wolverson
2023-01-31 22:34:14 +00:00
parent dce8d76d9c
commit d77fffe4f5

View File

@@ -7,5 +7,5 @@ edition = "2021"
serde = { version = "1.0", features = ["derive"] }
nix = "0"
log = "0"
notify = { version = "5.0.0", default-features = false, feature=["macos_kqueue"] } # Not using crossbeam because of Tokio
notify = { version = "5.0.0", default-features = false } # Not using crossbeam because of Tokio
thiserror = "1"