A Github CODEOWNERS answer sheet
Add the following to your Cargo.toml
filter
toml
[dependencies]
codeowners = "0.1"
Typical use involves resolving a CODEOWNERS file, parsing it, then querying target paths
```rust extern crate codeowners; use std::env;
fn main() { if let (Some(ownersfile), Some(path)) = (env::args().nth(1), env::args().nth(2)) { let owners = codeowners::frompath(owners_file); match owners.of(&path) { None => println!("{} is up for adoption", path), Some(owners) => { for owner in owners { println!("{}", owner); } } } } } ```
Doug Tangren (softprops) 2017