Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

ethcore-bloom-journal updated to 2018 #10804

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion util/bloom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Journaling bloom filter"
license = "GPL3"
edition = "2018"

[lib]
path = "src/lib.rs"

[dependencies]
siphasher = "0.1.1"
siphasher = "0.3"
6 changes: 1 addition & 5 deletions util/bloom/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.

extern crate siphasher;

use std::cmp;
use std::mem;
use std::f64;
use std::{cmp, mem, f64};
use std::hash::{Hash, Hasher};
use std::collections::HashSet;
use siphasher::sip::SipHasher;
Expand Down