git.delta.rocks / unique-network / refs/commits / 15e4512df81d

difftreelog

source

crates/evm-coder/Cargo.toml1.5 KiBsourcehistory
1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8const_format = { version = "0.2.26", default-features = false }9sha3-const = { version = "0.1.1", default-features = false }10# Ethereum uses keccak (=sha3) for selectors11# sha3 = "0.10.1"12# evm-coder reexports those proc-macro13evm-coder-procedural = { path = "./procedural" }14# Evm uses primitive-types for H160, H256 and others15primitive-types = { version = "0.11.1", default-features = false }16# Evm doesn't have reexports for log and others17ethereum = { version = "0.12.0", default-features = false }18sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }20# Error types for execution21evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }22# We have tuple-heavy code in solidity.rs23impl-trait-for-tuples = "0.2.2"2425pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }2627[dev-dependencies]28# We want to assert some large binary blobs equality in tests29hex = "0.4.3"30hex-literal = "0.3.4"31similar-asserts = "1.4.2"32concat-idents = "1.1.3"3334[features]35default = ["std"]36std = [37    "ethereum/std",38    "primitive-types/std",39    "evm-core/std",40    "frame-support/std",41]