axiomhq / rust-cuckoofilter

Cuckoo Filter: Practically Better Than Bloom (In Rust)
MIT License
271 stars 38 forks source link

Using `std::hash::hash` by mistake. #16

Closed bluss closed 7 years ago

bluss commented 9 years ago

There's a line use std::hash::{Hasher, Hash, hash}; in util.rs that imports the hash function. This is unstable but wasn't flagged due to bug rust-lang/rust/issues/28075.

It's unused, so fix is simply to remove the import.

florianjacob commented 7 years ago

@seiflotfy can be closed as this was fixed in the meantime.