Closed bluss closed 7 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.
use std::hash::{Hasher, Hash, hash};
hash
It's unused, so fix is simply to remove the import.
@seiflotfy can be closed as this was fixed in the meantime.
There's a line
use std::hash::{Hasher, Hash, hash};
in util.rs that imports thehash
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.