[package] name = "pallet-evm-precompile-sha3fips" version = "1.0.0" authors = ["Parity Technologies ", "Drew Stone "] edition = "2018" license = "Apache-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" description = "SHA3 FIPS202 precompile for EVM pallet." [dependencies] sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } fp-evm = { version = "1.0.0", default-features = false, path = "../../../../primitives/evm" } evm = { version = "0.25.0", default-features = false, features = ["with-codec"] } tiny-keccak = { version = "2.0", features = ["fips202"] } [features] default = ["std"] std = [ "sp-core/std", "sp-io/std", "fp-evm/std", "evm/std", ]