1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Core cache interpreting utilities.

#![feature(
    lint_reasons,
    provide_any,
    error_generic_member_access,
    error_iter,
    cfg_eval,
    try_blocks,
    array_chunks,
    if_let_guard,
    let_chains,
    error_in_core
)]
#![allow(clippy::result_large_err)]
#![warn(
    unused_qualifications,
    unused_import_braces,
    unused_extern_crates,
    rustdoc::broken_intra_doc_links,
    rustdoc::missing_crate_level_docs,
    trivial_casts,
    trivial_numeric_casts,
    clippy::uninlined_format_args
)]
#![deny(keyword_idents, macro_use_extern_crate)]
#![cfg(any(feature = "sqlite", feature = "dat2", feature = "dat"))]

pub mod arc;
pub mod buf;
pub mod decoder;
pub mod error;
pub mod hash;
pub mod index;
pub mod meta;
pub mod path;
#[cfg(feature = "dat2")]
pub mod xtea;