Skip to content

Commit

Permalink
Fix benches import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
g1mv committed Oct 16, 2024
1 parent bea69d3 commit 8277e94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "density-rs"
version = "0.16.0"
version = "0.16.1"
edition = "2021"
description = "Superfast compression library"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions benches/density.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn main() {
#[divan::bench_group(sample_count = 25)]
mod chameleon {
use crate::utils::file_path;
use density::algorithms::chameleon::chameleon::Chameleon;
use density_rs::algorithms::chameleon::chameleon::Chameleon;
use divan::counter::BytesCount;
use divan::Bencher;
use std::fs::read;
Expand Down Expand Up @@ -50,7 +50,7 @@ mod chameleon {
#[divan::bench_group(sample_count = 25)]
mod cheetah {
use crate::utils::file_path;
use density::algorithms::cheetah::cheetah::Cheetah;
use density_rs::algorithms::cheetah::cheetah::Cheetah;
use divan::counter::BytesCount;
use divan::Bencher;
use std::fs::read;
Expand Down Expand Up @@ -89,7 +89,7 @@ mod cheetah {
#[divan::bench_group(sample_count = 25)]
mod lion {
use crate::utils::file_path;
use density::algorithms::lion::lion::Lion;
use density_rs::algorithms::lion::lion::Lion;
use divan::counter::BytesCount;
use divan::Bencher;
use std::fs::read;
Expand Down

0 comments on commit 8277e94

Please sign in to comment.