git.delta.rocks / unique-network / refs/commits / 5403a31c4f6d

difftreelog

source

crates/evm-coder/Cargo.toml580 Bsourcehistory
1[package]2name = "evm-coder"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8evm-coder-macros = { path = "../evm-coder-macros" }9primitive-types = { version = "0.11.1", default-features = false }10hex-literal = "0.3.3"11ethereum = { version = "0.12.0", default-features = false }12evm-core = { default-features = false , git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.24" }13impl-trait-for-tuples = "0.2.1"1415[dev-dependencies]16hex = "0.4.3"1718[features]19default = ["std"]20std = ["ethereum/std", "primitive-types/std", "evm-core/std"]