yago-naga / yago4

Yago 4 - the next version of Yago
https://yago-knowledge.org/downloads/yago-4
GNU General Public License v3.0
90 stars 15 forks source link

Replaces failure::*::Hash with std::hash::Hash #11

Closed simonsan closed 3 years ago

simonsan commented 3 years ago

I hope I didn't get it wrong, but there is a Hash trait from the failure crate included that just exposes Rust core functionality so I removed the failure crate from the Cargo.toml and used the std:: one as there was no other usage for failure.

https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash https://docs.rs/failure/0.1.8/failure/struct.Compat.html#method.hash

Tpt commented 3 years ago

Thank you!