Files
uv/crates/bench/Cargo.toml
T
konsti 7c7daa8f83 Consistent Cargo.toml syntax (#483)
Remove the last Cargo.toml inconsistencies, see
https://github.com/astral-sh/puffin/pull/468/files/1526b3458a10bd50f64748862af9d46b202c563d#r1401083681.
Now all `[dependencies]` are workspace dependencies.
2023-11-22 08:34:08 +00:00

27 lines
637 B
TOML

[package]
name = "bench"
version = "0.0.0"
description = "Puffin Micro-benchmarks"
publish = false
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
[lib]
bench = false
[[bench]]
name = "distribution-filename"
path = "benches/distribution_filename.rs"
harness = false
[dependencies]
distribution-filename = { path = "../distribution-filename" }
platform-tags = { path = "../platform-tags" }
criterion = { version = "0.5.1", default-features = false }