f24bff5998
* simd implementation
* adds benchmarks
* Update util/EIP-152/src/avx.rs
Co-Authored-By: David <dvdplm@gmail.com>
* enable avx 😅
* better benchmark, docs
* rename avx to avx2, compile on android
* fix android again
* remove ifunc, code formatting
* license
* nits
* docs, nits
* fix test
23 lines
487 B
TOML
23 lines
487 B
TOML
[package]
|
|
name = "eip-152"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
repository = "https://github.com/paritytech/parity-ethereum"
|
|
documentation = "https://docs.rs/eip-152"
|
|
readme = "README.md"
|
|
description = "eip-512 blake2 F compression function"
|
|
keywords = ["eip-152", "eip152", "eip"]
|
|
license = "GPL-3.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rustc-hex = "2.0.1"
|
|
arrayref = "0.3.5"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|