diff --git a/file-id/Cargo.toml b/file-id/Cargo.toml index e664f5e9..e677c61d 100644 --- a/file-id/Cargo.toml +++ b/file-id/Cargo.toml @@ -8,10 +8,10 @@ license = "MIT OR Apache-2.0" keywords = ["filesystem", "inode", "file", "index"] categories = ["filesystem"] authors = ["Daniel Faust "] -rust-version = { workspace = true } -edition = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } +rust-version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [[bin]] name = "file-id" @@ -24,4 +24,4 @@ serde = { workspace = true, optional = true } windows-sys = { workspace = true, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } [dev-dependencies] -tempfile = { workspace = true } +tempfile.workspace = true diff --git a/notify-debouncer-full/Cargo.toml b/notify-debouncer-full/Cargo.toml index 7c8f97b0..5e334cc5 100644 --- a/notify-debouncer-full/Cargo.toml +++ b/notify-debouncer-full/Cargo.toml @@ -7,10 +7,10 @@ authors = ["Daniel Faust "] keywords = ["events", "filesystem", "notify", "watch"] license = "MIT OR Apache-2.0" readme = "README.md" -rust-version = { workspace = true } -edition = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } +rust-version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [features] default = ["macos_fsevent"] @@ -22,18 +22,18 @@ macos_kqueue = ["notify/macos_kqueue"] serialization-compat-6 = ["notify/serialization-compat-6"] [dependencies] -notify = { workspace = true } -notify-types = { workspace = true } +notify.workspace = true +notify-types.workspace = true crossbeam-channel = { workspace = true, optional = true } -file-id = { workspace = true } -walkdir = { workspace = true } -log = { workspace = true } +file-id.workspace = true +walkdir.workspace = true +log.workspace = true mock_instant = { workspace = true, optional = true } [dev-dependencies] notify-debouncer-full = { workspace = true, features = ["mock_instant"] } -pretty_assertions = { workspace = true } -rstest = { workspace = true } -serde = { workspace = true } -deser-hjson = { workspace = true } -rand = { workspace = true } +pretty_assertions.workspace = true +rstest.workspace = true +serde.workspace = true +deser-hjson.workspace = true +rand.workspace = true diff --git a/notify-debouncer-mini/Cargo.toml b/notify-debouncer-mini/Cargo.toml index ab12b65b..37ec4723 100644 --- a/notify-debouncer-mini/Cargo.toml +++ b/notify-debouncer-mini/Cargo.toml @@ -7,10 +7,10 @@ authors = ["Aron Heinecke "] keywords = ["events", "filesystem", "notify", "watch"] license = "MIT OR Apache-2.0" readme = "README.md" -rust-version = { workspace = true } -edition = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } +rust-version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [features] default = ["macos_fsevent"] @@ -21,7 +21,7 @@ macos_kqueue = ["notify/macos_kqueue"] serialization-compat-6 = ["notify/serialization-compat-6"] [dependencies] -notify = { workspace = true } -notify-types = { workspace = true } +notify.workspace = true +notify-types.workspace = true crossbeam-channel = { workspace = true, optional = true } -log = { workspace = true } +log.workspace = true diff --git a/notify-types/Cargo.toml b/notify-types/Cargo.toml index 66a524f5..90cee241 100644 --- a/notify-types/Cargo.toml +++ b/notify-types/Cargo.toml @@ -8,10 +8,10 @@ license = "MIT OR Apache-2.0" keywords = ["events", "filesystem", "notify", "watch"] categories = ["filesystem"] authors = ["Daniel Faust "] -rust-version = { workspace = true } -edition = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } +rust-version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [features] serialization-compat-6 = [] @@ -22,6 +22,6 @@ mock_instant = { workspace = true, optional = true } instant.workspace = true [dev-dependencies] -serde_json = { workspace = true } -insta = { workspace = true } -rstest = { workspace = true } +serde_json.workspace = true +insta.workspace = true +rstest.workspace = true diff --git a/notify/Cargo.toml b/notify/Cargo.toml index e094f021..4cc61cd9 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -12,10 +12,10 @@ authors = [ "Daniel Faust ", "Aron Heinecke " ] -rust-version = { workspace = true } -edition = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } +rust-version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [features] default = ["macos_fsevent"] @@ -25,19 +25,19 @@ macos_fsevent = ["fsevent-sys"] serialization-compat-6 = ["notify-types/serialization-compat-6"] [dependencies] -notify-types = { workspace = true } +notify-types.workspace = true crossbeam-channel = { workspace = true, optional = true } -filetime = { workspace = true } -libc = { workspace = true } -log = { workspace = true } -walkdir = { workspace = true } +filetime.workspace = true +libc.workspace = true +log.workspace = true +walkdir.workspace = true [target.'cfg(any(target_os="linux", target_os="android"))'.dependencies] inotify = { workspace = true, default-features = false } -mio = { workspace = true } +mio.workspace = true [target.'cfg(target_os="macos")'.dependencies] -bitflags = { workspace = true } +bitflags.workspace = true fsevent-sys = { workspace = true, optional = true } kqueue = { workspace = true, optional = true } mio = { workspace = true, optional = true } @@ -46,12 +46,12 @@ mio = { workspace = true, optional = true } windows-sys = { workspace = true, features = ["Win32_System_Threading", "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_WindowsProgramming", "Win32_System_IO"] } [target.'cfg(any(target_os="freebsd", target_os="openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios"))'.dependencies] -kqueue = { workspace = true } -mio = { workspace = true } +kqueue.workspace = true +mio.workspace = true [dev-dependencies] -serde_json = { workspace = true } -tempfile = { workspace = true } -nix = { workspace = true } -insta = { workspace = true } -rstest = { workspace = true } +serde_json.workspace = true +tempfile.workspace = true +nix.workspace = true +insta.workspace = true +rstest.workspace = true