[package] name = "pallet-dynamic-fee" version = "3.0.0" authors = ["Parity Technologies "] edition = "2018" description = "Dynamic fee handling for EVM." license = "Apache-2.0" [dependencies] pallet-evm = { path = "../evm", version = "5.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } serde = { version = "1.0.101", optional = true } sp-std = { 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-inherents = { 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" } frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } [dev-dependencies] pallet-timestamp = { 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" } [features] default = ["std"] std = [ "codec/std", "serde", "sp-std/std", "sp-core/std", "sp-runtime/std", "sp-inherents/std", "frame-system/std", "frame-support/std", "pallet-evm/std", ]