kconfig-linux 0.1.1

WIP crate for the KConfig DSL in the Linux kernel
Documentation
#![feature(option_result_contains)]

pub mod errors;
#[deny(unused_imports)]
pub mod parser;
pub mod structure;

#[cfg(test)]
pub mod test_utils;

#[cfg(test)]
pub mod test_suite;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}