nucleo/matcher/Cargo.toml
2023-12-22 19:44:50 +01:00

23 lines
647 B
TOML

[package]
name = "nucleo-matcher"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
version = "0.3.0"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
readme = "../README.md"
[dependencies]
memchr = "2.5.0"
unicode-segmentation = { version = "1.10", optional = true }
[features]
default = ["unicode-normalization", "unicode-casefold", "unicode-segmentation"]
unicode-normalization = []
unicode-casefold = []
unicode-segmentation = ["dep:unicode-segmentation"]
[dev-dependencies]
cov-mark = { version = "1.1.0", default-features = true }