rickub/ci-benchpublic Fork 0
07cf2ad65187931cb38327fe78782d64a282f13d
Commits
Clone
git clone https://git.rickub.com/rickub/ci-bench.git
git clone ssh://git@rickub.com/rickub/ci-bench.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

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