Files
nucleo/Cargo.toml

21 lines
525 B
TOML
Raw Normal View History

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>"]
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"
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" }
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]
members = ["matcher", "bench"]