sancus_lib/
lib.rs

1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6//
7// SPDX-License-Identifier: MIT OR Apache-2.0
8//
9// SPDX-FileCopyrightText: 2024 X-Software GmbH <opensource@x-software.com>
10
11pub mod file_info;
12pub mod license_info;
13pub mod license_text;
14pub mod third_party_licenses;
15
16#[cfg(feature = "scan")]
17pub mod license_detector;
18#[cfg(feature = "scan")]
19pub mod rpm_info;
20#[cfg(feature = "scan")]
21pub mod settings;
22#[cfg(feature = "scan")]
23pub mod vcpkg_spdx;