git.delta.rocks / unique-network / refs/commits / f37b77adcb2f

difftreelog

source

crates/evm-coder/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "evm-coder"3version = "0.1.6"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }9# evm-coder reexports those proc-macro10evm-coder-procedural = { path = "./procedural" }11# Evm uses primitive-types for H160, H256 and others12primitive-types = { version = "0.12.1", default-features = false }13# Evm doesn't have reexports for log and others14ethereum = { 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" }17# Error types for execution18evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.36" }19# We have tuple-heavy code in solidity.rs20impl-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]25# We want to assert some large binary blobs equality in tests26hex = "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]39# Stub/interface generation40stubgen = []