kibi 0.1.2

A text editor in less than 1024 lines of code with syntax higlighting, search and more.
Documentation
const KIBI: usize = 1024;

#[test]
fn test_below_loc_limit() {
    let language = tokei::LanguageType::Rust;
    let mut languages = tokei::Languages::new();
    let config = tokei::Config { types: Some(vec![language]), ..tokei::Config::default() };
    languages.get_statistics(&["src"], &[], &config);
    let loc = languages[&language].code;
    assert!(loc <= KIBI)
}