git.delta.rocks / unique-network / refs/commits / 8684bc0f6fa5

difftreelog

source

crates/evm-coder/Cargo.toml848 Bsourcehistory
1[package]2name = "evm-coder"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies]8# evm-coder reexports those proc-macro9evm-coder-procedural = { path = "./procedural" }10# Evm uses primitive-types for H160, H256 and others11primitive-types = { version = "0.11.1", default-features = false }12# Evm doesn't have reexports for log and others13ethereum = { version = "0.12.0", default-features = false }14# Error types for execution15evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.27" }16# We have tuple-heavy code in solidity.rs17impl-trait-for-tuples = "0.2.2"1819[dev-dependencies]20# We want to assert some large binary blobs equality in tests21hex = "0.4.3"22hex-literal = "0.3.4"2324[features]25default = ["std"]26std = ["ethereum/std", "primitive-types/std", "evm-core/std"]