nucleo/Cargo.toml

20 lines
485 B
TOML
Raw Normal View History

2023-07-30 02:52:44 +00:00
[package]
name = "nucleo"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
version = "0.1.1"
2023-07-30 02:52:44 +00:00
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
2023-08-11 16:31:14 +00:00
readme = "README.md"
2023-07-30 02:52:44 +00:00
[lib]
[dependencies]
nucleo-matcher = { version = "0.1", path = "matcher" }
parking_lot = { version = "0.12.1", features = ["send_guard", "arc_lock"]}
rayon = "1.7.0"
2023-07-26 13:32:04 +00:00
[workspace]
2023-07-30 02:52:44 +00:00
members = [ "matcher", "bench" ]