disktest_lib/
lib.rs

1// -*- coding: utf-8 -*-
2//
3// disktest - Storage tester
4//
5// Copyright 2020-2024 Michael Büsch <m@bues.ch>
6//
7// Licensed under the Apache License version 2.0
8// or the MIT license, at your option.
9// SPDX-License-Identifier: Apache-2.0 OR MIT
10//
11
12mod bufcache;
13mod disktest;
14mod generator;
15mod kdf;
16mod seed;
17mod stream;
18mod stream_aggregator;
19mod util;
20
21pub use disktest::{Disktest, DisktestFile, DisktestQuiet, DtStreamType};
22pub use seed::gen_seed_string;
23pub use util::parsebytes;
24
25// vim: ts=4 sw=4 expandtab