Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/bencher_compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "codspeed-bencher-compat"
version = "4.7.0"
rust-version = "1.74" # MSRV
rust-version = "1.80" # MSRV
edition = "2021"
description = "Bencher compatibility layer for CodSpeed"
authors = ["Arthur Pastel <arthur@codspeed.io>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo-codspeed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cargo-codspeed"
version = "4.7.0"
rust-version = "1.74" # MSRV
rust-version = "1.80" # MSRV
edition = "2021"
description = "Cargo extension to build & run your codspeed benchmarks"
authors = ["Arthur Pastel <arthur@codspeed.io>"]
Expand Down
5 changes: 2 additions & 3 deletions crates/cargo-codspeed/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,9 @@ impl BuildOptions<'_> {
let package_names = self
.package_filters
.packages_from_flags(metadata)
.map_err(|e| {
.inspect_err(|_e| {
// Avoid leaving an orphan cargo process, even if something went wrong
cargo.wait().expect("Could not get cargo's exist status");
e
cargo.wait().expect("Could not get cargo's exit status");
})?
.into_iter()
.map(|t| t.name.clone())
Expand Down
4 changes: 2 additions & 2 deletions crates/codspeed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "codspeed"
version = "4.7.0"
rust-version = "1.74" # MSRV
rust-version = "1.80" # MSRV
edition = "2021"
description = "Core instrumentation library for CodSpeed"
authors = ["Arthur Pastel <arthur@codspeed.io>"]
Expand All @@ -19,7 +19,7 @@ keywords = ["codspeed", "benchmark"]

[dependencies]
anyhow = { workspace = true }
colored = "2.0.0"
colored = "3.0.0"
Comment thread
GuillaumeLagrange marked this conversation as resolved.
glob = "0.3.2"
libc = "^0.2"
nix = { version = "0.31.1", features = ["time"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/criterion_compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "codspeed-criterion-compat"
version = "4.7.0"
rust-version = "1.74" # MSRV
rust-version = "1.80" # MSRV
edition = "2021"
description = "Criterion.rs compatibility layer for CodSpeed"
authors = ["Arthur Pastel <arthur@codspeed.io>"]
Expand All @@ -19,7 +19,7 @@ keywords = ["codspeed", "benchmark", "criterion"]
[dependencies]
criterion = { package = "codspeed-criterion-compat-walltime", path = "./criterion_fork", version = "=4.7.0", default-features = false }
codspeed = { path = "../codspeed", version = "=4.7.0" }
colored = "2.1.0"
colored = "3.0.0"
Comment thread
GuillaumeLagrange marked this conversation as resolved.
clap = { version = "4", default-features = false, features = ["std"] }
regex = { version = "1.5", default-features = false, features = ["std"] }

Expand Down
Loading