Skip to content

Commit e606bb6

Browse files
committed
Remove direct dependencies on lazy_static, once_cell and byteorder
The functionality of all three crates is now available in the standard library.
1 parent 20e40d5 commit e606bb6

File tree

4 files changed

+20
-33
lines changed

4 files changed

+20
-33
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ dirs = "4.0"
4444
getopts = "0.2"
4545
ignore = "0.4"
4646
itertools = "0.11"
47-
lazy_static = "1.4"
4847
regex = "1.7"
4948
serde = { version = "1.0.160", features = ["derive"] }
5049
serde_json = "1.0"

src/comment.rs

+6-14
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
use std::{borrow::Cow, iter};
44

55
use itertools::{multipeek, MultiPeek};
6-
use lazy_static::lazy_static;
7-
use regex::Regex;
86
use rustc_span::Span;
97

108
use crate::config::Config;
@@ -17,17 +15,6 @@ use crate::utils::{
1715
};
1816
use crate::{ErrorKind, FormattingError};
1917

20-
lazy_static! {
21-
/// A regex matching reference doc links.
22-
///
23-
/// ```markdown
24-
/// /// An [example].
25-
/// ///
26-
/// /// [example]: this::is::a::link
27-
/// ```
28-
static ref REFERENCE_LINK_URL: Regex = Regex::new(r"^\[.+\]\s?:").unwrap();
29-
}
30-
3118
fn is_custom_comment(comment: &str) -> bool {
3219
if !comment.starts_with("//") {
3320
false
@@ -980,11 +967,16 @@ fn trim_custom_comment_prefix(s: &str) -> String {
980967
/// Returns `true` if the given string MAY include URLs or alike.
981968
fn has_url(s: &str) -> bool {
982969
// This function may return false positive, but should get its job done in most cases.
970+
// The regex is indended to capture text such as the below.
971+
//
972+
// /// An [example].
973+
// ///
974+
// /// [example]: this::is::a::link
983975
s.contains("https://")
984976
|| s.contains("http://")
985977
|| s.contains("ftp://")
986978
|| s.contains("file://")
987-
|| REFERENCE_LINK_URL.is_match(s)
979+
|| static_regex!(r"^\[.+\]\s?:").is_match(s)
988980
}
989981

990982
/// Returns true if the given string may be part of a Markdown table.

src/lib.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
#![allow(clippy::match_like_matches_macro)]
66
#![allow(unreachable_pub)]
77

8-
#[cfg(test)]
9-
#[macro_use]
10-
extern crate lazy_static;
118
#[macro_use]
129
extern crate tracing;
1310

@@ -62,6 +59,13 @@ pub use crate::rustfmt_diff::{ModifiedChunk, ModifiedLines};
6259
#[macro_use]
6360
mod utils;
6461

62+
macro_rules! static_regex {
63+
($re:literal) => {{
64+
static RE: ::std::sync::OnceLock<::regex::Regex> = ::std::sync::OnceLock::new();
65+
RE.get_or_init(|| ::regex::Regex::new($re).unwrap())
66+
}};
67+
}
68+
6569
mod attr;
6670
mod chains;
6771
mod closures;

src/test/configuration_snippet.rs

+7-15
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,6 @@ impl ConfigurationSection {
2424
fn get_section<I: Iterator<Item = String>>(
2525
file: &mut Enumerate<I>,
2626
) -> Option<ConfigurationSection> {
27-
lazy_static! {
28-
static ref CONFIG_NAME_REGEX: regex::Regex =
29-
regex::Regex::new(r"^## `([^`]+)`").expect("failed creating configuration pattern");
30-
// Configuration values, which will be passed to `from_str`:
31-
//
32-
// - must be prefixed with `####`
33-
// - must be wrapped in backticks
34-
// - may by wrapped in double quotes (which will be stripped)
35-
static ref CONFIG_VALUE_REGEX: regex::Regex =
36-
regex::Regex::new(r#"^#### `"?([^`]+?)"?`"#)
37-
.expect("failed creating configuration value pattern");
38-
}
39-
4027
loop {
4128
match file.next() {
4229
Some((i, line)) => {
@@ -53,9 +40,14 @@ impl ConfigurationSection {
5340
let start_line = (i + 2) as u32;
5441

5542
return Some(ConfigurationSection::CodeBlock((block, start_line)));
56-
} else if let Some(c) = CONFIG_NAME_REGEX.captures(&line) {
43+
} else if let Some(c) = static_regex!(r"^## `([^`]+)`").captures(&line) {
5744
return Some(ConfigurationSection::ConfigName(String::from(&c[1])));
58-
} else if let Some(c) = CONFIG_VALUE_REGEX.captures(&line) {
45+
} else if let Some(c) = static_regex!(r#"^#### `"?([^`]+?)"?`"#).captures(&line) {
46+
// Configuration values, which will be passed to `from_str`
47+
//
48+
// - must be prefixed with `####`
49+
// - must be wrapped in backticks
50+
// - may by wrapped in double quotes (which will be stripped)
5951
return Some(ConfigurationSection::ConfigValue(String::from(&c[1])));
6052
}
6153
}

0 commit comments

Comments
 (0)