evmole 0.8.4

Extracts function selectors and arguments from EVM bytecode
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "evmole"
version = "0.8.4"
authors = ["Maxim Andreev <andreevmaxim@gmail.com>"]
build = false
exclude = [
    "/javascript",
    "/python",
    "/benchmark",
    "/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extracts function selectors and arguments from EVM bytecode"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cdump/evmole"

[package.metadata.wasm-pack.profile.release]
wasm-opt = [
    "-O",
    "--enable-bulk-memory",
]

[features]
javascript = [
    "dep:wasm-bindgen",
    "dep:serde-wasm-bindgen",
    "serde",
]
python = ["dep:pyo3"]
serde = ["dep:serde"]
trace = [
    "trace_selectors",
    "trace_arguments",
    "trace_mutability",
    "trace_storage",
]
trace_arguments = []
trace_mutability = []
trace_selectors = []
trace_storage = []
wasm = [
    "serde",
    "dep:serde_json",
]

[lib]
name = "evmole"
crate-type = [
    "cdylib",
    "lib",
]
path = "src/lib.rs"

[dependencies.alloy-dyn-abi]
version = "1"
default-features = false

[dependencies.alloy-primitives]
version = "1"
features = [
    "std",
    "map-foldhash",
]
default-features = false

[dependencies.indexmap]
version = "2.12"

[dependencies.pyo3]
version = "0.27"
features = ["extension-module"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[profile.release]
lto = true
codegen-units = 1
strip = true