1[package]2name = "evm-coder"3version = "0.1.1"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 }1415evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.27" }1617impl-trait-for-tuples = "0.2.2"1819[dev-dependencies]2021hex = "0.4.3"22hex-literal = "0.3.4"2324[features]25default = ["std"]26std = ["ethereum/std", "primitive-types/std", "evm-core/std"]