2026-05-04 22:45:55 -07:00
|
|
|
[package]
|
|
|
|
|
name = "roto-benches"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
2026-06-18 21:16:25 -07:00
|
|
|
[features]
|
2026-06-30 01:40:13 -04:00
|
|
|
default = ["std"]
|
|
|
|
|
std = ["roto-runtime/std", "alloc"]
|
|
|
|
|
alloc = ["roto-runtime/alloc"]
|
2026-06-18 21:16:25 -07:00
|
|
|
|
2026-05-04 22:45:55 -07:00
|
|
|
[dependencies]
|
|
|
|
|
roto-runtime = { path = "../runtime" }
|
2026-06-30 01:40:13 -04:00
|
|
|
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
|