diff --git a/fasthash-sys/Cargo.toml b/fasthash-sys/Cargo.toml index 6cd5a4f..0502311 100644 --- a/fasthash-sys/Cargo.toml +++ b/fasthash-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fasthash-sys" -version = "0.3.0" +version = "0.3.1" authors = ["Flier Lu "] description = "A suite of non-cryptographic hash functions for Rust." homepage = "https://github.com/flier/rust-fasthash" diff --git a/fasthash/Cargo.toml b/fasthash/Cargo.toml index 815e688..9bd3fea 100644 --- a/fasthash/Cargo.toml +++ b/fasthash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fasthash" -version = "0.3.0" +version = "0.3.1" authors = ["Flier Lu "] description = "A suite of non-cryptographic hash functions for Rust." homepage = "https://github.com/flier/rust-fasthash" @@ -22,7 +22,7 @@ gen = ["fasthash-sys/gen"] [dependencies] xoroshiro128 = "0.3" seahash = "3.0" -fasthash-sys = { version = "0.3.0", path = "../fasthash-sys" } +fasthash-sys = { version = "0.3.1", path = "../fasthash-sys" } clippy = { version = "0.*", optional = true } [dev-dependencies]