aboutsummaryrefslogtreecommitdiffstats
path: root/disktest-lib/src/lib.rs
blob: f5c0a1d6883c1af78de6c005361d34b62d748c1d (plain)
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
// -*- coding: utf-8 -*-
//
// disktest - Storage tester
//
// Copyright 2020-2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//

#![forbid(unsafe_code)]

mod bufcache;
mod disktest;
mod generator;
mod kdf;
mod seed;
mod stream;
mod stream_aggregator;
mod util;

pub use disktest::{Disktest, DisktestFile, DisktestQuiet, DtStreamType};
pub use seed::gen_seed_string;
pub use util::parsebytes;

// vim: ts=4 sw=4 expandtab
bues.ch cgit interface