git.delta.rocks / unique-network / refs/commits / f3a64f5136ce

difftreelog

source

crates/evm-coder/Cargo.toml566 Bsourcehistory
1[package]2name = "evm-coder"3version = "0.1.0"4edition = "2018"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.9.0", default-features = false }11evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm.git", branch="precompile-output-parachain" }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"]