[package] name = "pallet-evm" version = "5.0.0" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/frontier/" description = "FRAME EVM contracts pallet" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } frame-system = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } pallet-timestamp = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } pallet-balances = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-runtime = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-std = { 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" } frame-benchmarking = { version = "3.0.0", git = "https://github.com/paritytech/substrate", branch = "frontier", default-features = false, optional = true } fp-evm = { version = "2.0.0", default-features = false, path = "../../primitives/evm" } primitive-types = { version = "0.9.0", default-features = false, features = ["rlp", "byteorder"] } rlp = { version = "0.5", default-features = false } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } evm-runtime = { version = "0.27.0", default-features = false } evm-gasometer = { version = "0.27.0", default-features = false } sha3 = { version = "0.8", default-features = false } log = { version = "0.4", default-features = false } hex = { version = "0.4", default-features = false } [features] default = ["std"] std = [ "serde", "codec/std", "sp-core/std", "sp-runtime/std", "frame-support/std", "frame-system/std", "pallet-balances/std", "sp-io/std", "frame-benchmarking/std", "sp-std/std", "fp-evm/std", "sha3/std", "rlp/std", "primitive-types/std", "evm/std", "evm/with-serde", "evm-runtime/std", "evm-gasometer/std", "pallet-timestamp/std", "log/std", "hex/std", ] runtime-benchmarks = [ "frame-benchmarking", ]