Skip to content

Commit

Permalink
v0.14.1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
lazear committed Sep 9, 2023
1 parent 4d2aff3 commit 7892d15
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 30 deletions.
6 changes: 3 additions & 3 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/sage-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-cli"
version = "0.14.0"
version = "0.14.1-alpha"
authors = ["Michael Lazear <[email protected]"]
edition = "2021"
rust-version = "1.62"
Expand Down
4 changes: 2 additions & 2 deletions crates/sage-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl Runner {
let duration = Instant::now().duration_since(start).as_millis() as usize;

let rate = prev * 1000 / (duration + 1);
log::trace!(" - searched {} spectra ({} spectra/s)", prev, rate);
log::trace!("- searched {} spectra ({} spectra/s)", prev, rate);
}
x
})
Expand All @@ -137,7 +137,7 @@ impl Runner {
let duration = Instant::now().duration_since(start).as_millis() as usize;
let prev = counter.load(Ordering::Relaxed);
let rate = prev * 1000 / (duration + 1);
log::info!(" - search: {:8} ms ({} spectra/s)", duration, rate);
log::info!("- search: {:8} ms ({} spectra/s)", duration, rate);

let quant = self
.parameters
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-cloudpath/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-cloudpath"
version = "0.14.0"
version = "0.14.1-alpha"
authors = ["Michael Lazear <[email protected]"]
edition = "2021"
rust-version = "1.62"
Expand Down
8 changes: 0 additions & 8 deletions crates/sage-types/Cargo.toml

This file was deleted.

14 changes: 0 additions & 14 deletions crates/sage-types/src/lib.rs

This file was deleted.

2 changes: 1 addition & 1 deletion crates/sage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-core"
version = "0.14.0"
version = "0.14.1-alpha"
authors = ["Michael Lazear <[email protected]"]
edition = "2021"
rust-version = "1.62"
Expand Down

0 comments on commit 7892d15

Please sign in to comment.