1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "bench-rust-build"
version = "0.1.0"
edition = "2021"
description = "Cold/warm build + test workload for the ci-bench CI race benchmark."
# Versions are EXACT-pinned (=) so both platforms resolve the identical set; the
# generated Cargo.lock is committed alongside and is the real pin.
[dependencies]
anyhow = "=1.0.103"
clap = { version = "=4.6.1", features = ["derive"] }
regex = "=1.13.1"
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.150"
tokio = { version = "=1.53.0", features = ["rt-multi-thread", "macros", "time", "sync", "io-util"] }
[profile.release]
debug = 1
|