From 11d5f5a5e0485609bf96602d23af2a9af04cab78 Mon Sep 17 00:00:00 2001 From: Nathan Essex Date: Sat, 3 Feb 2024 01:39:07 +0900 Subject: [PATCH] Bump version to v0.20.14 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/sorts/mod.rs | 13 ------------- 3 files changed, 2 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bcd246c..08f0478 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "rdst" -version = "0.20.13" +version = "0.20.14" dependencies = [ "arbitrary-chunks", "block-pseudorand", diff --git a/Cargo.toml b/Cargo.toml index 02f2243..51d707c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rdst" description = "A flexible parallel unstable radix sort that supports sorting by any arbitrarily defined sequence of bytes." -version = "0.20.13" +version = "0.20.14" authors = ["Nathan Essex "] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/src/sorts/mod.rs b/src/sorts/mod.rs index 4d13a5b..795bde1 100644 --- a/src/sorts/mod.rs +++ b/src/sorts/mod.rs @@ -10,16 +10,3 @@ mod regions_sort; #[cfg(feature = "multi-threaded")] mod scanning_sort; mod ska_sort; - -pub use comparative_sort::*; -pub use lsb_sort::*; -#[cfg(feature = "multi-threaded")] -pub use mt_lsb_sort::*; -pub use out_of_place_sort::*; -#[cfg(feature = "multi-threaded")] -pub use recombinating_sort::*; -#[cfg(feature = "multi-threaded")] -pub use regions_sort::*; -#[cfg(feature = "multi-threaded")] -pub use scanning_sort::*; -pub use ska_sort::*;