lintian-brush 0.182.0

Automatic lintian issue fixer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::collections::HashMap;

/// Path to the directory containing common license files on Debian systems
pub const COMMON_LICENSES_DIR: &str = "/usr/share/common-licenses";

lazy_static::lazy_static! {
    /// Mapping of SPDX license identifiers to their full license names
    pub static ref FULL_LICENSE_NAME: HashMap<&'static str, &'static str> = {
        let mut m = HashMap::new();
        m.insert("Apache-2.0", "Apache License, Version 2.0");
        m.insert("CC0-1.0", "CC0 1.0 Universal license");
        m
    };
}