1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]89evm-coder-procedural = { path = "./procedural" }1011primitive-types = { version = "0.11.1", default-features = false }1213ethereum = { version = "0.12.0", default-features = false }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }1617evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }1819impl-trait-for-tuples = "0.2.2"2021pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27-fee-limit" }2223[dev-dependencies]2425hex = "0.4.3"26hex-literal = "0.3.4"27similar-asserts = "1.4.2"28concat-idents = "1.1.3"2930[features]31default = ["std"]32std = [33 "ethereum/std",34 "primitive-types/std",35 "evm-core/std",36 "frame-support/std",37]