mirror of
https://github.com/solaeus/nucleo.git
synced 2024-11-09 09:07:11 +00:00
23 lines
647 B
TOML
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 }
|