19 lines
428 B
TOML
19 lines
428 B
TOML
[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]
|
|
pbkdf2 = "0.12.2"
|
|
sha2 = "0.10.8"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5.1", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "small"
|
|
harness = false
|