Skip to content

Commit

Permalink
Raise MSRV to 1.65
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust authored and 0xpr03 committed Jun 30, 2024
1 parent ade84e8 commit b313000
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ v5 maintenance branch is on `v5_maintenance` after `5.2.0`

v4 commits split out to branch `v4_maintenance` starting with `4.0.16`

## notify 7.0.0

- CHANGE: Raise MSRV to 1.65

## notify-types 1.0.0

New crate containing public type definitions for the notify and debouncer crates.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ members = [
"notify-debouncer-mini",
"notify-debouncer-full",
"file-id",
# internal
"examples"
#"examples/hot_reload_tide" until https://github.com/rustsec/rustsec/issues/501 is resolved
"examples",
]
exclude = [
"examples/hot_reload_tide", # excluded until https://github.com/rustsec/rustsec/issues/501 is resolved
]
exclude = ["examples/hot_reload_tide"]
4 changes: 2 additions & 2 deletions notify-debouncer-full/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "notify-debouncer-full"
version = "0.4.0"
edition = "2021"
rust-version = "1.63"
rust-version = "1.65"
description = "notify event debouncer optimized for ease of use"
documentation = "https://docs.rs/notify-debouncer-full"
homepage = "https://github.com/notify-rs/notify"
Expand Down Expand Up @@ -40,7 +40,7 @@ mock_instant = { version = "0.3.0", optional = true }
[dev-dependencies]
notify-debouncer-full = { path = ".", features = ["mock_instant"] }
pretty_assertions = "1.3.0"
rstest = "0.18"
rstest = "0.17.0"
serde = { version = "1.0.89", 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 @@ -2,7 +2,7 @@
name = "notify-debouncer-mini"
version = "0.4.1"
edition = "2021"
rust-version = "1.63"
rust-version = "1.65"
description = "notify mini debouncer for events"
documentation = "https://docs.rs/notify-debouncer-mini"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 1 addition & 1 deletion notify-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "notify-types"
version = "1.0.0"
rust-version = "1.63"
rust-version = "1.65"
description = "Types used by the notify crate"
documentation = "https://docs.rs/notify-types"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 1 addition & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "notify"
version = "6.1.1"
rust-version = "1.63"
rust-version = "1.65"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "1.65.0"

0 comments on commit b313000

Please sign in to comment.