git.delta.rocks / unique-network / refs/commits / 409ca7fed22b

difftreelog

source

crates/evm-coder/Cargo.toml565 Bsourcehistory
1[package]2name = "evm-coder"3version = "0.1.0"4edition = "2021"56[dependencies]7evm-coder-macros = { path = "../evm-coder-macros" }8primitive-types = { version = "0.10.1", default-features = false }9hex-literal = "0.3.3"10ethereum = { version = "0.11.1", default-features = false }11evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm.git", branch = "unique-polkadot-v0.9.16" }12impl-trait-for-tuples = "0.2.1"1314[dev-dependencies]15hex = "0.4.3"1617[features]18default = ["std"]19std = ["ethereum/std", "primitive-types/std", "evm-core/std"]