25 lines
543 B
TOML
25 lines
543 B
TOML
[package]
|
|
name = "fff-query-parser"
|
|
version = "0.2.4"
|
|
edition = "2024"
|
|
description = "Query parser for fff file finder - includes specific syntax for various constraints like globs, extensions, regex etc"
|
|
license = "MIT"
|
|
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlok.com>"]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
zlob = ["dep:zlob"]
|
|
|
|
[dependencies]
|
|
zlob = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "parse_bench"
|
|
harness = false
|