pan_core/lib.rs
1// Copyright (c) 2023 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
2// Use of this source is governed by Apache-2.0 License that can be found
3// in the LICENSE file.
4
5#![deny(
6 warnings,
7 clippy::all,
8 clippy::cargo,
9 clippy::nursery,
10 clippy::pedantic
11)]
12#![allow(clippy::module_name_repetitions)]
13
14pub mod traits;
15pub mod types;