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
12#![forbid(unsafe_code)]
13
14mod bufcache;
15mod disktest;
16mod generator;
17mod kdf;
18mod seed;
19mod stream;
20mod stream_aggregator;
21mod util;
22
23pub use disktest::{Disktest, DisktestFile, DisktestQuiet, DtStreamType};
24pub use seed::gen_seed_string;
25pub use util::parsebytes;
26
27// vim: ts=4 sw=4 expandtab