os_info 3.14.0

Detect the operating system type and version.
Documentation
mod file_release;
mod lsb_release;

use log::trace;

use crate::{architecture, bitness, Info, Type};

pub fn current_platform() -> Info {
    trace!("linux::current_platform is called");

    let mut info = lsb_release::get()
        .or_else(file_release::get)
        .unwrap_or_else(|| Info::with_type(Type::Linux));
    info.bitness = bitness::get();
    info.architecture = architecture::get();

    trace!("Returning {:?}", info);
    info
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn os_type() {
        let version = current_platform();
        match version.os_type() {
            Type::AlmaLinux
            | Type::Alpaquita
            | Type::Alpine
            | Type::ALTLinux
            | Type::Amazon
            | Type::AOSC
            | Type::Arch
            | Type::Artix
            | Type::Bluefin
            | Type::CachyOS
            | Type::CentOS
            | Type::Debian
            | Type::Elementary
            | Type::EndeavourOS
            | Type::Fedora
            | Type::Garuda
            | Type::Gentoo
            | Type::Kali
            | Type::Linux
            | Type::Mabox
            | Type::Manjaro
            | Type::Mariner
            | Type::NixOS
            | Type::Nobara
            | Type::Uos
            | Type::OpenCloudOS
            | Type::openEuler
            | Type::openSUSE
            | Type::OracleLinux
            | Type::PikaOS
            | Type::Pop
            | Type::Raspbian
            | Type::Redhat
            | Type::RedHatEnterprise
            | Type::RockyLinux
            | Type::Solus
            | Type::SUSE
            | Type::Ubuntu
            | Type::Ultramarine
            | Type::Void
            | Type::Zorin
            | Type::Mint => (),
            os_type => {
                panic!("Unexpected OS type: {}", os_type);
            }
        }
    }
}