2 unstable releases

0.2.0 Jan 11, 2023
0.1.0 Nov 24, 2022

#143 in Profiling

Download history 939/week @ 2024-11-16 795/week @ 2024-11-23 620/week @ 2024-11-30 626/week @ 2024-12-07 565/week @ 2024-12-14 599/week @ 2024-12-21 602/week @ 2024-12-28 645/week @ 2025-01-04 593/week @ 2025-01-11 696/week @ 2025-01-18 420/week @ 2025-01-25 668/week @ 2025-02-01 729/week @ 2025-02-08 630/week @ 2025-02-15 801/week @ 2025-02-22 694/week @ 2025-03-01

2,966 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

~265–780KB
~14K SLoC