[package] name = "keccak-rust" version = "1.0.2" authors = ["Anton Grigorev "] edition = "2018" license = "MIT" homepage = "https://github.com/BaldyAsh/keccak-rust/" repository = "https://github.com/BaldyAsh/keccak-rust/" description = "Keccak implementation in Rust" documentation = "https://docs.rs/keccak-rust" readme = "README.md" keywords = ["keccak", "sha3", "crypto", "cryptography"] categories = ["cryptography"] [dependencies] crunchy = "0.2" [dev-dependencies] criterion = "0.3" [lib] path = "src/lib.rs" [[bench]] name = "benches" harness = false [profile.dev] opt-level = 0 debug = true [profile.release] opt-level = 3 debug = false