Skip to content

Commit 149e528

Browse files
authored
Merge pull request #44 from wesleywiser/three_dot_zero
0.3.0 release
2 parents 86e555e + 2b23430 commit 149e528

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Wesley Wiser <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
measureme = "0.2"
8+
measureme = { "path" = "../measureme" }
99
serde = { version = "1.0", features = [ "derive" ] }
1010
serde_json = "1.0"
1111
structopt = "0.2"

crox/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct Opt {
4747
fn main() -> Result<(), Box<std::error::Error>> {
4848
let opt = Opt::from_args();
4949

50-
let data = ProfilingData::new(&opt.file_prefix);
50+
let data = ProfilingData::new(&opt.file_prefix)?;
5151

5252
let chrome_file = BufWriter::new(fs::File::create("chrome_profiler.json")?);
5353

measureme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "measureme"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
description = "Support crate for rustc's self-profiling feature"

0 commit comments

Comments
 (0)