Files
pikl/crates/pikl-core/Cargo.toml
J. Champagne 6a4cc85285 feat(core): Expand filtering into pipeline supporting multiple text search modes.
Modes include: exact match, smart-case, and regular expressions.
2026-03-13 22:55:47 -04:00

22 lines
635 B
TOML

[package]
name = "pikl-core"
description = "Core library for pikl-menu. Filterable, hookable, streaming item list engine."
version.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["sync", "io-util", "rt"] }
nucleo-matcher = "0.3.1"
fancy-regex = "0.14"
[dev-dependencies]
tokio = { version = "1.50.0", features = ["sync", "process", "io-util", "rt", "macros", "rt-multi-thread"] }
pikl-test-macros = { path = "../pikl-test-macros" }