Skip to content

Commit 1b524ff

Browse files
authored
Merge pull request #2539 from ehuss/update-notify
Update notify to 8.0.0
2 parents c809516 + 9b873e9 commit 1b524ff

File tree

4 files changed

+38
-117
lines changed

4 files changed

+38
-117
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: msrv
4444
os: ubuntu-22.04
4545
# sync MSRV with docs: guide/src/guide/installation.md and Cargo.toml
46-
rust: 1.74.0
46+
rust: 1.77.0
4747
target: x86_64-unknown-linux-gnu
4848
name: ${{ matrix.name }}
4949
steps:

Cargo.lock

+33-112
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "MPL-2.0"
1717
readme = "README.md"
1818
repository = "https://github.com/rust-lang/mdBook"
1919
description = "Creates a book from markdown files"
20-
rust-version = "1.74"
20+
rust-version = "1.77" # Keep in sync with installation.md and .github/workflows/main.yml
2121

2222
[dependencies]
2323
anyhow = "1.0.71"
@@ -40,8 +40,8 @@ toml = "0.5.11" # Do not update, see https://github.com/rust-lang/mdBook/issues/
4040
topological-sort = "0.2.2"
4141

4242
# Watch feature
43-
notify = { version = "6.1.1", optional = true }
44-
notify-debouncer-mini = { version = "0.4.1", optional = true }
43+
notify = { version = "8.0.0", optional = true }
44+
notify-debouncer-mini = { version = "0.6.0", optional = true }
4545
ignore = { version = "0.4.20", optional = true }
4646
pathdiff = { version = "0.2.1", optional = true }
4747
walkdir = { version = "2.3.3", optional = true }

guide/src/guide/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To make it easier to run, put the path to the binary into your `PATH`.
2020

2121
To build the `mdbook` executable from source, you will first need to install Rust and Cargo.
2222
Follow the instructions on the [Rust installation page].
23-
mdBook currently requires at least Rust version 1.74.
23+
mdBook currently requires at least Rust version 1.77.
2424

2525
Once you have installed Rust, the following command can be used to build and install mdBook:
2626

0 commit comments

Comments
 (0)