git.delta.rocks / unique-network / refs/commits / 0257bf04211b

difftreelog

source

crates/evm-coder/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }9# Ethereum uses keccak (=sha3) for selectors10# sha3 = "0.10.1"11# evm-coder reexports those proc-macro12evm-coder-procedural = { path = "./procedural" }13# Evm uses primitive-types for H160, H256 and others14primitive-types = { version = "0.11.1", default-features = false }15# Evm doesn't have reexports for log and others16ethereum = { 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" }19# Error types for execution20evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }21# We have tuple-heavy code in solidity.rs22impl-trait-for-tuples = "0.2.2"2324pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }2526[dev-dependencies]27# We want to assert some large binary blobs equality in tests28hex = "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]