nucleo/Cargo.toml
blinxen e86f523e33
Fix file name and excluded no needed files in Cargo.toml (#30)
* Fix typo in file name

* Exclude files that don't need to be published on crates.io
2023-10-20 19:12:32 +02:00

21 lines
532 B
TOML

[package]
name = "nucleo"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
version = "0.2.1"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
readme = "README.md"
exclude = ["/typos.toml", "/tarpaulin.toml"]
[lib]
[dependencies]
nucleo-matcher = { version = "0.2.0", path = "matcher" }
parking_lot = { version = "0.12.1", features = ["send_guard", "arc_lock"]}
rayon = "1.7.0"
[workspace]
members = [ "matcher", "bench" ]