From fd75b16bc95a44cbc6a3b2e109c4cccc3413263f Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 19 Mar 2021 22:06:18 +0100 Subject: [PATCH] Go figure --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e68cd77..1b9647b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/jedisct1/rust-siphash" homepage = "https://docs.rs/siphasher" documentation = "https://docs.rs/siphasher" readme = "README.md" -version = "0.3.4" +version = "0.3.5" categories = ["algorithms", "cryptography"] edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 71c4a7d..2426afa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ mod tests; #[cfg(test)] mod tests128; -#[cfg(feature = "serde")] +#[cfg(any(feature = "serde", feature = "serde_std", feature = "serde_no_std"))] pub mod reexports { pub use serde; }