ethcore-bloom-journal updated to 2018 (#10804)

This commit is contained in:
Marek Kotewicz
2019-06-27 20:34:07 +08:00
committed by Andronik Ordian
parent afe14b42e2
commit a729ca3223
3 changed files with 7 additions and 10 deletions

View File

@@ -4,9 +4,10 @@ version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Journaling bloom filter"
license = "GPL3"
edition = "2018"
[lib]
path = "src/lib.rs"
[dependencies]
siphasher = "0.1.1"
siphasher = "0.3"

View File

@@ -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;