2023-07-30 04:52:44 +02:00
|
|
|
[package]
|
|
|
|
name = "nucleo"
|
|
|
|
description = "plug and play high performance fuzzy matcher"
|
2024-02-20 18:57:14 +01:00
|
|
|
authors = ["Pascal Kuthe <pascalkuthe@pm.me>"]
|
2024-04-02 02:31:13 +02:00
|
|
|
version = "0.5.0"
|
2023-07-30 04:52:44 +02:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
repository = "https://github.com/helix-editor/nucleo"
|
2023-08-11 18:31:14 +02:00
|
|
|
readme = "README.md"
|
2023-10-20 19:12:32 +02:00
|
|
|
exclude = ["/typos.toml", "/tarpaulin.toml"]
|
2023-07-30 04:52:44 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-20 18:57:14 +01:00
|
|
|
nucleo-matcher = { version = "0.3.1", path = "matcher" }
|
2025-02-14 10:34:16 +01:00
|
|
|
parking_lot = { version = "0.12.1", features = ["send_guard", "arc_lock"] }
|
2023-07-30 04:52:44 +02:00
|
|
|
rayon = "1.7.0"
|
|
|
|
|
2023-07-26 15:32:04 +02:00
|
|
|
[workspace]
|
2025-02-14 10:34:16 +01:00
|
|
|
members = ["matcher", "bench"]
|