1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }9101112evm-coder-procedural = { path = "./procedural" }1314primitive-types = { version = "0.11.1", default-features = false }1516ethereum = { version = "0.12.0", default-features = false }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }1920evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }2122impl-trait-for-tuples = "0.2.2"2324pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }2526[dev-dependencies]2728hex = "0.4.3"29hex-literal = "0.3.4"30similar-asserts = "1.4.2"31concat-idents = "1.1.3"3233[features]34default = ["std"]35std = [36 "ethereum/std",37 "primitive-types/std",38 "evm-core/std",39 "frame-support/std",40]