Files
roto/benches/Cargo.toml
T

25 lines
445 B
TOML
Raw Normal View History

2026-05-04 22:45:55 -07:00
[package]
name = "roto-benches"
version = "0.1.0"
edition = "2024"
[features]
default = ["std"]
std = ["roto-runtime/std", "alloc"]
alloc = ["roto-runtime/alloc"]
2026-05-04 22:45:55 -07:00
[dependencies]
roto-runtime = { path = "../runtime" }
bytes = "1.7"
2026-05-04 22:45:55 -07:00
clap = { version = "4", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "hackers_bench"
harness = false