[[bench]]
name = "common"
path = "benches/common.rs"
[[bench]]
name = "solve"
path = "benches/solve.rs"
[dependencies.aho-corasick]
version = "1.0"
[dependencies.lazy_static]
optional = true
version = "1.0"
[dependencies.regex]
version = "1.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
optional = true
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.paste]
version = "1.0"
[features]
benchmarks = []
core = ["lazy_static"]
ignore_case = []
json = ["serde_json"]
sync = []
[lib]
name = "tau_engine"
path = "src/lib.rs"
[package]
authors = ["Alex Kornitzer <a.kornitzer@me.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A document tagging library"
edition = "2024"
keywords = ["rule", "search", "tag", "tau"]
license = "MIT"
name = "tau-engine"
readme = "README.md"
repository = "https://github.com/countercept/tau-engine"
version = "1.14.0"
[package.metadata.docs.rs]
features = ["json"]
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "invalid"
path = "tests/invalid.rs"
[[test]]
name = "solve"
path = "tests/solve.rs"