rust_job_scheduling/Cargo.toml

21 lines
494 B
TOML
Raw Normal View History

2024-10-27 18:41:19 +01:00
[package]
name = "rust_job_scheduling"
version = "0.1.0"
authors = ["Rodolphe Breard <rodolphe@what.tf>"]
edition = "2021"
description = "Benchmark of several job scheduling algorithms implemented in Rust."
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
2024-10-27 19:07:13 +01:00
pbkdf2 = "0.12.2"
rayon = { version = "1.10.0", default-features = false }
2024-10-27 19:07:13 +01:00
sha2 = "0.10.8"
2024-10-27 19:37:24 +01:00
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
2024-10-30 21:08:19 +01:00
name = "job_scheduling"
2024-10-27 19:37:24 +01:00
harness = false