1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. /// SPDX licenses in Python distributions that are not GPL. /// /// We store an allow list of licenses rather than trying to deny GPL licenses /// because if we miss a new GPL license, we accidentally let in GPL. pub const NON_GPL_LICENSES: &[&str] = &[ "BSD-3-Clause", "bzip2-1.0.6", "MIT", "OpenSSL", "Sleepycat", "X11", "Zlib", ]; /// Describes license information for a library. #[derive(Clone, Debug, PartialEq)] pub struct LicenseInfo { /// SPDX license shortnames. pub licenses: Vec<String>, /// Suggested filename for the license. pub license_filename: String, /// Text of the license. pub license_text: String, }