From 1420e46e8be92a9a9bae2ace189d0f9d39ab322a Mon Sep 17 00:00:00 2001 From: Aron Heinecke Date: Sun, 20 Aug 2023 03:24:37 +0200 Subject: [PATCH] opt-out of serde binary experiment This opts-out of https://github.com/serde-rs/serde/issues/2538 for now --- examples/hot_reload_tide/Cargo.toml | 2 +- file-id/Cargo.toml | 2 +- notify-debouncer-full/Cargo.toml | 2 +- notify-debouncer-mini/Cargo.toml | 2 +- notify/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/hot_reload_tide/Cargo.toml b/examples/hot_reload_tide/Cargo.toml index 4c4a6efb..6ad99a50 100644 --- a/examples/hot_reload_tide/Cargo.toml +++ b/examples/hot_reload_tide/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" tide = "0.16.0" async-std = { version = "1.6.0", features = ["attributes"] } serde_json = "1.0" -serde = "1.0.115" +serde = "1.0.115, < 1.0.172" notify = { version = "6.0.1", features = ["serde"], path = "../../notify" } # required to prevent mixing with workspace diff --git a/file-id/Cargo.toml b/file-id/Cargo.toml index fa8abab1..fa3f5e83 100644 --- a/file-id/Cargo.toml +++ b/file-id/Cargo.toml @@ -19,7 +19,7 @@ name = "file-id" path = "bin/file_id.rs" [dependencies] -serde = { version = "1.0.89", features = ["derive"], optional = true } +serde = { version = "1.0.89, < 1.0.172", features = ["derive"], optional = true } [target.'cfg(windows)'.dependencies] windows-sys = { version = "0.48.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } diff --git a/notify-debouncer-full/Cargo.toml b/notify-debouncer-full/Cargo.toml index 97157709..0dee5d0d 100644 --- a/notify-debouncer-full/Cargo.toml +++ b/notify-debouncer-full/Cargo.toml @@ -35,6 +35,6 @@ log = "0.4.17" pretty_assertions = "1.3.0" mock_instant = "0.3.0" rstest = "0.17.0" -serde = { version = "1.0.89", features = ["derive"] } +serde = { version = "1.0.89, < 1.0.172", features = ["derive"] } deser-hjson = "1.1.1" rand = "0.8.5" diff --git a/notify-debouncer-mini/Cargo.toml b/notify-debouncer-mini/Cargo.toml index 6b926e8b..992dfc1d 100644 --- a/notify-debouncer-mini/Cargo.toml +++ b/notify-debouncer-mini/Cargo.toml @@ -26,5 +26,5 @@ crossbeam = ["crossbeam-channel","notify/crossbeam-channel"] [dependencies] notify = { version = "6.0.1", path = "../notify" } crossbeam-channel = { version = "0.5", optional = true } -serde = { version = "1.0.89", features = ["derive"], optional = true } +serde = { version = "1.0.89, < 1.0.172", features = ["derive"], optional = true } log = "0.4.17" diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 33b7b155..2e1c4c9f 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -23,7 +23,7 @@ crossbeam-channel = { version = "0.5.0", optional = true } filetime = "0.2.22" libc = "0.2.4" log = "0.4.17" -serde = { version = "1.0.89", features = ["derive"], optional = true } +serde = { version = "1.0.89, < 1.0.172", features = ["derive"], optional = true } walkdir = "2.2.2" [target.'cfg(any(target_os="linux", target_os="android"))'.dependencies]