4 releases
Uses old Rust 2015
0.1.3 | Nov 19, 2017 |
---|---|
0.1.2 | Nov 6, 2017 |
0.1.1 | Jul 24, 2017 |
0.1.0 | Jul 24, 2017 |
#1203 in Filesystem
983 downloads per month
Used in 3 crates
18KB
347 lines
codeowners
A Github CODEOWNERS answer sheet
installation
Add the following to your Cargo.toml
filter
[dependencies]
codeowners = "0.1"
Usage
Typical use involves resolving a CODEOWNERS file, parsing it, then querying target paths
extern crate codeowners;
use std::env;
fn main() {
if let (Some(owners_file), Some(path)) =
(env::args().nth(1), env::args().nth(2)) {
let owners = codeowners::from_path(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
Dependencies
~3.5MB
~73K SLoC