git.delta.rocks / unique-network / refs/commits / 82cba6b103c9

difftreelog

source

crates/evm-coder/Cargo.toml1.1 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "evm-coder"5version = "0.1.6"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 }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16# Error types for execution17evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.36" }18# We have tuple-heavy code in solidity.rs19impl-trait-for-tuples = "0.2.2"2021[dev-dependencies]22# We want to assert some large binary blobs equality in tests23hex = "0.4.3"24hex-literal = "0.3.4"25similar-asserts = "1.4.2"26trybuild = "1.0"2728[features]29default = ["std"]30std = ["ethereum/std", "evm-core/std", "frame-support/std", "primitive-types/std"]31# Stub/interface generation32stubgen = []