Skip to content

Commit

Permalink
chore: release v0.0.2 (#8)
Browse files Browse the repository at this point in the history
* chore: release v0.0.2

Signed-off-by: MrCroxx <[email protected]>

* chore: make clippy happy

Signed-off-by: MrCroxx <[email protected]>

---------

Signed-off-by: MrCroxx <[email protected]>
  • Loading branch information
MrCroxx authored Jan 11, 2025
1 parent 97ed567 commit 4306dc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mixtrics"
description = "One crate for all metrics."
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/foyer-rs/mixtrics"
homepage = "https://github.com/foyer-rs/mixtrics"
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ check:
typos
cargo sort -w
cargo fmt --all
cargo clippy --all-targets
cargo clippy --all-targets --all-features

test:
Expand Down
2 changes: 2 additions & 0 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

/// Scoped functional programming extensions.
#[allow(dead_code)]
pub trait Scope {
/// Scoped with ownership.
fn with<F, R>(self, f: F) -> R
Expand Down Expand Up @@ -44,6 +45,7 @@ pub trait Scope {
impl<T> Scope for T {}

/// Helper trait for boxing.
#[allow(dead_code)]
pub trait Boxer {
fn boxed(self) -> Box<Self>
where
Expand Down

0 comments on commit 4306dc5

Please sign in to comment.