Skip to content

Commit 9c6f5c6

Browse files
andjo403michaelwoerister
authored andcommitted
rename tools_lib to analyzeme
1 parent 756df3a commit 9c6f5c6

File tree

21 files changed

+19
-18
lines changed

21 files changed

+19
-18
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ members = [
66
"mmview",
77
"stack_collapse",
88
"summarize",
9-
"tools_lib",
9+
"analyzeme",
1010
"flamegraph",
1111
]

tools_lib/Cargo.toml renamed to analyzeme/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "tools_lib"
2+
name = "analyzeme"
33
version = "0.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"

tools_lib/benches/serialization_bench.rs renamed to analyzeme/benches/serialization_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
extern crate test;
44

55
use measureme::{FileSerializationSink, MmapSerializationSink};
6-
use tools_lib::testing_common;
6+
use analyzeme::testing_common;
77

88
#[bench]
99
fn bench_file_serialization_sink(bencher: &mut test::Bencher) {
File renamed without changes.

tools_lib/src/lib.rs renamed to analyzeme/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
//! To create a [`ProfilingData`], call the [`ProfilingData::new()`] function and
88
//! provide a `Path` with the directory and file name for the trace files.
99
//!
10-
//! To retrieve an `Iterator` of all of the events in the file, call the [`ProfilingData::iter()`] method.
10+
//! To retrieve an `Iterator` of all of the events in the file,
11+
//! call the [`ProfilingData::iter()`] method.
1112
//!
1213
//! [`ProfilingData`]: struct.ProfilingData.html
1314
//! [`ProfilingData::iter()`]: struct.ProfilingData.html#method.iter
File renamed without changes.
File renamed without changes.
File renamed without changes.

tools_lib/tests/serialization.rs renamed to analyzeme/tests/serialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use measureme::{FileSerializationSink, MmapSerializationSink};
2-
use tools_lib::testing_common::run_end_to_end_serialization_test;
2+
use analyzeme::testing_common::run_end_to_end_serialization_test;
33

44
#[test]
55
fn test_file_serialization_sink() {

crox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
measureme = { "path" = "../measureme" }
9-
tools_lib = { path = "../tools_lib" }
9+
analyzeme = { path = "../analyzeme" }
1010
rustc-hash = "1.0.1"
1111
serde = { version = "1.0", features = [ "derive" ] }
1212
serde_json = "1.0"

0 commit comments

Comments
 (0)