2 unstable releases

0.2.0 Jan 11, 2023
0.1.0 Nov 24, 2022

#129 in Profiling

Download history 568/week @ 2024-07-28 503/week @ 2024-08-04 791/week @ 2024-08-11 789/week @ 2024-08-18 574/week @ 2024-08-25 674/week @ 2024-09-01 567/week @ 2024-09-08 667/week @ 2024-09-15 1117/week @ 2024-09-22 534/week @ 2024-09-29 843/week @ 2024-10-06 1125/week @ 2024-10-13 777/week @ 2024-10-20 779/week @ 2024-10-27 686/week @ 2024-11-03 507/week @ 2024-11-10

2,780 downloads per month
Used in 2 crates

Apache-2.0

40KB
703 lines

Nexmark-rs

Crate Docs CI

The Nexmark benchmark data generator in Rust.

Installation

cargo install nexmark --features bin

Usage

Generate nexmark events. Print one per line in JSON format:

nexmark

Only generate events for a specific type:

nexmark -t person

By default it generates events at a certain rate based on the timestamp. You can make it generate all at once by adding --no-wait:

nexmark -n 10 --no-wait

See more usages:

nexmark -h

Using as Library

Add nexmark to your Cargo.toml:

cargo add nexmark

Generate events from the generator:

use nexmark::EventGenerator;

for event in EventGenerator::default().take(10) {
    println!("{event:?}");
}

License

Apache License 2.0. Please refer to LICENSE for more information.

Dependencies

~245–780KB
~14K SLoC