[[bin]]
name = "evmil"
path = "src/bin/evmil.rs"
[dependencies.clap]
version = "3.1"
[dependencies.delta_inc]
version = "0.3.1"
[dependencies.log]
version = "0.4"
[dependencies.log4rs]
version = "1"
[dependencies.ruint]
version = "1.10"
[lib]
name = "evmil"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
description = "An low-level immediate language for compiling to EVM bytecode"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "evmil"
readme = "README.md"
repository = "https://github.com/DavePearce/EvmIL"
version = "0.4.12"
[[test]]
name = "assembler"
path = "tests/assembler.rs"
[[test]]
name = "blockvec"
path = "tests/blockvec.rs"
[[test]]
name = "cfg"
path = "tests/cfg.rs"
[[test]]
name = "compiler"
path = "tests/compiler.rs"
[[test]]
name = "disassembler"
path = "tests/disassembler.rs"
[[test]]
name = "dominators"
path = "tests/dominators.rs"
[[test]]
name = "interval"
path = "tests/interval.rs"
[[test]]
name = "interval_stack"
path = "tests/interval_stack.rs"
[[test]]
name = "micro"
path = "tests/micro.rs"
[[test]]
name = "seq"
path = "tests/seq.rs"
[[test]]
name = "sorted_vec"
path = "tests/sorted_vec.rs"
[[test]]
name = "transitive_closure"
path = "tests/transitive_closure.rs"