damascus/
lib.rs

1// Copyright 2025 Yato202010
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
4//
5//     http://www.apache.org/licenses/LICENSE-2.0
6//
7// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
8#![deny(clippy::unwrap_used)]
9#![deny(clippy::expect_used)]
10#![deny(clippy::panic)]
11
12#[cfg(doctest)]
13#[cfg(feature = "fuse-overlayfs")]
14mod doctest {
15    use doc_comment::doctest;
16    doctest!("../README.md");
17}
18
19mod common;
20mod os;
21pub use common::{
22    fs::{CaseInsensitive, Filesystem, StackableFilesystem, StateRecovery},
23    utils::partition::PartitionID,
24};
25#[allow(unused_imports)]
26pub use os::*;