A fast Rust library and CLI for GitHub's CODEOWNERS file.
Includes a fast, hand-written parser for CODEOWNERS files. The resulting parse tree includes comments and byte offsets for all syntax components, making it suitable for writing syntax highlighters or providing syntax-aware diagnostic information.
The matcher works by building an NFA from the rules, which makes this library highly performant for large rulesets and matching large numbers of paths.
```rust use codeowners_rs::{parse, RuleSet};
let ruleset = parse(" .rs @github/rustaceans /docs//.md @github/docs-team ").into_ruleset();
for path in &["src/main.rs", "docs/README.md", "README.md"] { let owners = ruleset.owners(path); println!("{}: {:?}", path, owners); } ```
See the full documentation on docs.rs.
``` $ codeowners --help Usage: codeowners [OPTIONS] [PATHS]...
Arguments: [PATHS]...
Options:
-f, --file