uv/crates/bench/Cargo.toml

50 lines
1.2 KiB
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 }
[lints]
workspace = true
[lib]
bench = false
[[bench]]
name = "distribution-filename"
path = "benches/distribution_filename.rs"
harness = false
[[bench]]
name = "checksum"
path = "benches/checksum.rs"
harness = false
[[bench]]
name = "metadata"
path = "benches/metadata.rs"
harness = false
[dependencies]
distribution-filename = { path = "../distribution-filename" }
install-wheel-rs = { path = "../install-wheel-rs" }
platform-tags = { path = "../platform-tags" }
pypi-types = { path = "../pypi-types" }
crc32fast = {version = "1.3.2" }
criterion = { version = "0.5.1", default-features = false }
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }
seahash = { version = "4.1.0" }
sha2 = { workspace = true }
metrohash = "1.0.6"
cityhash = "0.1.1"
xxhash-rust = { version = "0.8.8", features = ["xxh3"] }
blake3 = { version = "1.5.0", features = ["rayon", "mmap"] }