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; }