[package]
edition = "2021"
name = "disarm64"
version = "0.1.26"
authors = ["kromych <kromych@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
disarm64 provides a tool and a library for decoding ARM64 instructions (at least 250 MiB/sec
of the decoding speed is delivered on a laptop that is used for development). Here you will
also find a utility for generating disassembler/instruction decoder tables in Rust from
a JSON file. Besides that, can visualize the instruction decoding as a tree.
"""
homepage = "https://github.com/kromych/disarm64"
documentation = "https://github.com/kromych/disarm64"
readme = "Readme.md"
keywords = [
"aarch64",
"arm64",
"arm-v8",
"disassembler",
"reverse-engineering",
]
categories = [
"command-line-utilities",
"development-tools",
"embedded",
]
license = "Unlicense OR MIT"
repository = "https://github.com/kromych/disarm64"
[features]
default = ["full"]
exception = []
full = []
load_store = []
system = []
[lib]
name = "disarm64"
path = "src/lib.rs"
[dependencies.bitfield-struct]
version = "0.13"
[dependencies.disarm64_defn]
version = "0.1.12"
default-features = false