1[package]2name = "evm-coder"3version = "0.1.6"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"2122[dev-dependencies]2324hex = "0.4.3"25hex-literal = "0.3.4"26similar-asserts = "1.4.2"27trybuild = "1.0"2829[features]30default = ["std"]31std = [32 "ethereum/std",33 "primitive-types/std",34 "evm-core/std",35 "frame-support/std",36]3738stubgen = []