[package]
edition = "2024"
name = "oom-match"
version = "0.0.1"
authors = ["Gabriel DeMoura <gabrielteratos@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight Incremental Parser Generator inspired by Regular Expressions and Parsing Expression Grammars"
homepage = "https://crates.io/crates/oom-match"
documentation = "https://docs.rs/oom-match"
readme = "README.md"
keywords = [
"parser",
"parsing",
"compiler",
"interpreter",
]
categories = ["parsing"]
license = "MIT"
repository = "https://github.com/gabrielfalcao/oom"
[lib]
name = "oom"
path = "src/lib.rs"
bench = false
[[test]]
name = "test_buffer"
path = "tests/test_buffer.rs"
[[test]]
name = "test_matcher_named"
path = "tests/test_matcher_named.rs"
[[test]]
name = "test_matcher_one_or_more"
path = "tests/test_matcher_one_or_more.rs"
[[test]]
name = "test_matcher_literal"
path = "tests/test_matcher_literal.rs"
[[test]]
name = "test_matcher_range"
path = "tests/test_matcher_range.rs"
[[test]]
name = "test_matcher_special"
path = "tests/test_matcher_special.rs"
[[test]]
name = "test_matcher_zero_or_more"
path = "tests/test_matcher_zero_or_more.rs"
[[test]]
name = "test_matcher_not"
path = "tests/test_matcher_not.rs"
[[test]]
name = "test_matcher_optional"
path = "tests/test_matcher_optional.rs"
[[test]]
name = "test_matcher_atomic"
path = "tests/test_matcher_atomic.rs"
[[test]]
name = "test_matcher_compound_atomic"
path = "tests/test_matcher_compound_atomic.rs"
[[test]]
name = "test_matcher_ascii"
path = "tests/test_matcher_ascii.rs"
[[test]]
name = "test_parse_type_like_values"
path = "tests/test_parse_type_like_values.rs"
[dependencies.unique-pointer]
version = "0.8.0"
[dev-dependencies.k9]
version = "0.12.0"