Merge pull request #29 from blinxen/remove-unused-dep

This commit is contained in:
Pascal Kuthe 2023-10-15 22:13:08 +02:00 committed by GitHub
commit 831f502df3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -10,7 +10,6 @@ readme = "../README.md"
[dependencies]
memchr = "2.5.0"
cov-mark = { version = "1.1.0", default-features = false }
unicode-segmentation = { version = "1.10", optional = true }
[features]

View File

@ -62,7 +62,7 @@ pub enum AtomKind {
Exact,
}
/// A single pattern component that is matched with a single [`Matcher`](crate::Matcher) function
/// A single pattern component that is matched with a single [`Matcher`] function
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Atom {
/// Whether this pattern atom is a negative match.
@ -245,7 +245,7 @@ impl Atom {
}
/// Matches this pattern against `haystack` (using the allocation and configuration
/// from `matcher`) and calculates a ranking score. See the [`Matcher`](crate::Matcher).
/// from `matcher`) and calculates a ranking score. See the [`Matcher`].
/// Documentation for more details.
///
/// *Note:* The `ignore_case` setting is overwritten to match the casing of
@ -271,7 +271,7 @@ impl Atom {
/// Matches this pattern against `haystack` (using the allocation and
/// configuration from `matcher`), calculates a ranking score and the match
/// indices. See the [`Matcher`](crate::Matcher). Documentation for more
/// indices. See the [`Matcher`]. Documentation for more
/// details.
///
/// *Note:* The `ignore_case` setting is overwritten to match the casing of
@ -423,7 +423,7 @@ impl Pattern {
}
/// Matches this pattern against `haystack` (using the allocation and configuration
/// from `matcher`) and calculates a ranking score. See the [`Matcher`](crate::Matcher).
/// from `matcher`) and calculates a ranking score. See the [`Matcher`].
/// Documentation for more details.
///
/// *Note:* The `ignore_case` setting is overwritten to match the casing of
@ -441,7 +441,7 @@ impl Pattern {
/// Matches this pattern against `haystack` (using the allocation and
/// configuration from `matcher`), calculates a ranking score and the match
/// indices. See the [`Matcher`](crate::Matcher). Documentation for more
/// indices. See the [`Matcher`]. Documentation for more
/// details.
///
/// *Note:* The `ignore_case` setting is overwritten to match the casing of