randstream 0.5.0

Reproducible Random Stream Generator and Validator
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "randstream"
version = "0.5.0"
authors = ["Gaƫtan Lehmann <gaetan.lehmann@vates.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reproducible Random Stream Generator and Validator"
homepage = "https://github.com/xcp-ng/randstream/"
documentation = "https://github.com/xcp-ng/randstream/"
readme = "README.md"
keywords = [
    "random",
    "performance",
    "stream",
]
license = "MIT"
repository = "https://github.com/xcp-ng/randstream.git"

[features]
benchmark = ["criterion"]

[lib]
name = "randstream"
path = "src/lib.rs"

[[bin]]
name = "randstream"
path = "src/main.rs"

[[test]]
name = "cli"
path = "tests/cli.rs"

[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
required-features = ["benchmark"]

[dependencies.anyhow]
version = "1.0.102"

[dependencies.clap]
version = "4.6.0"
features = [
    "derive",
    "env",
    "wrap_help",
]

[dependencies.clap-verbosity-flag]
version = "3.0.4"

[dependencies.crc32fast]
version = "1.5.0"

[dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
optional = true

[dependencies.human-units]
version = "0.5.3"

[dependencies.indicatif]
version = "0.18.4"

[dependencies.itertools]
version = "0.14.0"

[dependencies.log]
version = "0.4.29"

[dependencies.nix]
version = "0.31.2"
features = ["ioctl"]

[dependencies.num_cpus]
version = "1.17.0"

[dependencies.ocli]
version = "0.3.0"

[dependencies.parse-size]
version = "1.1.0"

[dependencies.rand]
version = "0.10.0"

[dependencies.rand_pcg]
version = "0.10.1"

[dependencies.supports-unicode]
version = "3.0.0"

[dev-dependencies.tempfile]
version = "3"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"