9e719f088f
* Add license and readme * Use pure rust implementation * Bump version to 0.1.1 * Don't use C, prefer the pure Rust implementation * Add test for `write_keccak` * Bump version * Add benchmarks * Add benchmarks * Add keccak_256, keccak_512, keccak_256_unchecked and keccak_512_unchecked – mostly for compatibility with ethash * Remove failed git merge attempt from external git repo Cargo.lock updates * whitespace * Mark unsafe function unsafe * Unsafe calls in unsafe block * Document unsafety invariants * Revert unintended changes to Cargo.lock
16 lines
349 B
TOML
16 lines
349 B
TOML
[package]
|
|
description = "Rust bindings for tinykeccak C library"
|
|
homepage = "https://github.com/paritytech/keccak-hash"
|
|
readme = "README.md"
|
|
license = "GPL-3.0"
|
|
name = "keccak-hash"
|
|
version = "0.1.2"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.3"
|
|
tiny-keccak = "1.4.1"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|