os-identifier 0.4.0

Resolve product / release names of operating systems used by endoflife.date into canonical names.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) mod linux;

pub(crate) mod windows;

pub struct GenericLabel<'a> {
    #[allow(dead_code)]
    raw: &'a str,
}

impl<'a> From<&'a str> for GenericLabel<'a> {
    fn from(value: &'a str) -> Self {
            GenericLabel {
                raw: value,
            }
    }
}