nucleo/Cargo.toml

21 lines
532 B
TOML
Raw Permalink 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>"]
2023-12-22 18:44:10 +00:00
version = "0.3.0"
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"
exclude = ["/typos.toml", "/tarpaulin.toml"]
2023-07-30 02:52:44 +00:00
[lib]
[dependencies]
2023-12-22 18:44:10 +00:00
nucleo-matcher = { version = "0.3.0", path = "matcher" }
2023-07-30 02:52:44 +00:00
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" ]