Skip to content

Commit

Permalink
opt-out of serde binary experiment
Browse files Browse the repository at this point in the history
This opts-out of serde-rs/serde#2538 for now
  • Loading branch information
0xpr03 committed Aug 20, 2023
1 parent e6b239b commit 1420e46
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/hot_reload_tide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion file-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-full/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 1420e46

Please sign in to comment.