[package]
edition = "2021"
rust-version = "1.85"
name = "matchkit"
version = "0.1.1"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vocabulary types for multi-pattern matching — Match struct, Matcher trait, shared errors"
homepage = "https://github.com/santht/matchkit"
documentation = "https://docs.rs/matchkit"
readme = "README.md"
keywords = [
"pattern-matching",
"match",
"gpu",
"trait",
"vocabulary",
]
categories = [
"algorithms",
"text-processing",
]
license = "MIT"
repository = "https://github.com/santhsecurity/Santh"
[lib]
name = "matchkit"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytemuck]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.faultkit]
version = "0.1"
[dev-dependencies.futures]
version = "0.3.32"
[dev-dependencies.memoffset]
version = "0.9"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
missing_docs = "warn"