malory 0.2.1

A tool to benchmark Async Functions (Futures)
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 6.38 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 307.81 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 23s Average build duration of successful builds.
  • all releases: 23s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • dt665m/malory-rs
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • dt665m

Malory

Crates.io MIT licensed Build Status

Malory is a rust async benchmarking tool using Tokio.

Usage

use malory;

#[tokio::main]
fn main() {
  let iterations = 1000;
  let parallelism = 5;
  let context = "That's how you get ants.";

  malory::judge_me(iterations, parallelism, context, |ctx, i| async { true }).await;
}