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