From c24f395c7f0b30481c3f24c17e8c578903f04f6a Mon Sep 17 00:00:00 2001 From: Akhil Velagapudi <4@4khil.com> Date: Tue, 31 Oct 2023 22:29:43 -0700 Subject: [PATCH] Bump crc-catalog 2.1.0 -> 2.4.0 Signed-off-by: Akhil Velagapudi <4@4khil.com> --- Cargo.toml | 2 +- src/lib.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad40cb5..043e9bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ bytewise-mem-limit = [] slice16-mem-limit = [] [dependencies] -crc-catalog = "2.1.0" +crc-catalog = "2.4.0" [dev-dependencies] criterion = { version = "0.4" } diff --git a/src/lib.rs b/src/lib.rs index 01ac102..024e799 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,8 @@ #![no_std] #![forbid(unsafe_code)] -pub use crc_catalog::*; +pub use crc_catalog::algorithm::*; +pub use crc_catalog::{Algorithm, Width}; mod crc128; mod crc16;