summaryrefslogtreecommitdiffstats
path: root/vendor/mdbook/src/preprocess/index.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /vendor/mdbook/src/preprocess/index.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/mdbook/src/preprocess/index.rs')
-rw-r--r--vendor/mdbook/src/preprocess/index.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/mdbook/src/preprocess/index.rs b/vendor/mdbook/src/preprocess/index.rs
index fd60ad4da..004b7eda6 100644
--- a/vendor/mdbook/src/preprocess/index.rs
+++ b/vendor/mdbook/src/preprocess/index.rs
@@ -1,10 +1,11 @@
use regex::Regex;
use std::path::Path;
-use crate::errors::*;
-
use super::{Preprocessor, PreprocessorContext};
use crate::book::{Book, BookItem};
+use crate::errors::*;
+use log::warn;
+use once_cell::sync::Lazy;
/// A preprocessor for converting file name `README.md` to `index.md` since
/// `README.md` is the de facto index file in markdown-based documentation.
@@ -67,9 +68,8 @@ fn warn_readme_name_conflict<P: AsRef<Path>>(readme_path: P, index_path: P) {
}
fn is_readme_file<P: AsRef<Path>>(path: P) -> bool {
- lazy_static! {
- static ref RE: Regex = Regex::new(r"(?i)^readme$").unwrap();
- }
+ static RE: Lazy<Regex> = Lazy::new(|| Regex::new(r"(?i)^readme$").unwrap());
+
RE.is_match(
path.as_ref()
.file_stem()