denyhosts/clamav/libclamav_rust/src/lib.rs

32 lines
990 B
Rust
Raw Normal View History

2022-10-22 18:41:00 +08:00
/*
2023-01-14 18:28:39 +08:00
* libclamav features written in Rust
2022-10-22 18:41:00 +08:00
*
2023-01-14 18:28:39 +08:00
* Copyright (C) 2021-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
*
* Authors: Micah Snyder, Mickey Sola
2022-10-22 18:41:00 +08:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
2023-01-14 18:28:39 +08:00
/// cbindgen:ignore
pub mod sys;
2022-10-22 18:41:00 +08:00
2023-01-14 18:28:39 +08:00
pub mod cdiff;
pub mod evidence;
pub mod ffi_util;
pub mod fuzzy_hash;
pub mod logging;
pub mod util;