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"2021[dev-dependencies]2223hex = "0.4.3"24hex-literal = "0.3.4"25similar-asserts = "1.4.2"26concat-idents = "1.1.3"2728[features]29default = ["std"]30std = [31 "ethereum/std",32 "primitive-types/std",33 "evm-core/std",34 "frame-support/std",35]