disktest-lib 2.0.0

Tester for Solid State Disks, Non-Volatile Memory Storage, Hard Disks, USB Sticks, SD-Cards, etc..
Documentation
// -*- 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
//

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