// -*- coding: utf-8 -*- // // disktest - Storage tester // // Copyright 2020-2024 Michael Büsch // // 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