[package]
edition = "2021"
name = "codeowner"
version = "0.1.0"
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse and match GitHub CODEOWNERS files. Correct pattern semantics, explicit unowned paths, error reporting with line numbers. Zero dependencies, no_std."
documentation = "https://docs.rs/codeowner"
readme = "README.md"
keywords = [
"codeowners",
"github",
"ownership",
"monorepo",
"gitignore",
]
categories = [
"development-tools",
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/faizanali2k05/codeowner"
[lib]
name = "codeowner"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "github_docs"
path = "tests/github_docs.rs"
[dependencies]