whichlicense_detection/
lib.rs

1/*
2*   Copyright (c) 2023 Duart Snel
3*   All rights reserved.
4
5*   Licensed under the Apache License, Version 2.0 (the "License");
6*   you may not use this file except in compliance with the License.
7*   You may obtain a copy of the License at
8
9*   http://www.apache.org/licenses/LICENSE-2.0
10
11*   Unless required by applicable law or agreed to in writing, software
12*   distributed under the License is distributed on an "AS IS" BASIS,
13*   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*   See the License for the specific language governing permissions and
15*   limitations under the License.
16*/
17
18pub mod detecting;
19pub mod license_tools;
20// pub mod offloading;
21pub mod pipeline_tools;
22
23
24pub use crate::detecting::detecting::*;
25pub use crate::license_tools::license_tools::*;
26pub use crate::pipeline_tools::pipeline::*;
27// pub use crate::offloading::threaded_detection::*;
28
29
30// // C mappings
31// #[no_mangle]
32// pub extern "C" fn e_strip_license(l: &str) -> String {
33//     strip_license(l)
34// }