nucleo/matcher/Cargo.toml

23 lines
647 B
TOML
Raw Normal View History

2023-07-26 13:32:04 +00:00
[package]
name = "nucleo-matcher"
2023-08-11 16:31:14 +00:00
description = "plug and play high performance fuzzy matcher"
2023-07-26 13:32:04 +00:00
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
2023-12-22 18:44:10 +00:00
version = "0.3.0"
2023-07-26 13:32:04 +00:00
edition = "2021"
2023-08-11 16:31:14 +00:00
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
readme = "../README.md"
2023-07-26 13:32:04 +00:00
[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"]
2023-07-26 13:32:04 +00:00
[dev-dependencies]
cov-mark = { version = "1.1.0", default-features = true }