1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8const_format = { version = "0.2.26", default-features = false }9sha3-const = { version = "0.1.1", default-features = false }10111213evm-coder-procedural = { path = "./procedural" }1415primitive-types = { version = "0.11.1", default-features = false }1617ethereum = { version = "0.12.0", default-features = false }18sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }2021evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }2223impl-trait-for-tuples = "0.2.2"2425pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }2627[dev-dependencies]2829hex = "0.4.3"30hex-literal = "0.3.4"31similar-asserts = "1.4.2"32concat-idents = "1.1.3"3334[features]35default = ["std"]36std = [37 "ethereum/std",38 "primitive-types/std",39 "evm-core/std",40 "frame-support/std",41]