1[package]2name = "evm-coder"3version = "0.1.4"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }910evm-coder-procedural = { path = "./procedural" }1112primitive-types = { version = "0.11.1", default-features = false }1314ethereum = { version = "0.12.0", default-features = false }15sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }1718evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }1920impl-trait-for-tuples = "0.2.2"2122pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30-2" }2324[dev-dependencies]2526hex = "0.4.3"27hex-literal = "0.3.4"28similar-asserts = "1.4.2"29concat-idents = "1.1.3"30trybuild = "1.0"3132[features]33default = ["std"]34std = [35 "ethereum/std",36 "primitive-types/std",37 "evm-core/std",38 "frame-support/std",39]4041stubgen = []