# 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 = "2021" rust-version = "1.70" name = "disas" version = "0.1.2" authors = ["Denis Drakhnia "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Disassembler" readme = "README.md" keywords = ["disassembler"] license = "GPL-3.0-only" repository = "https://github.com/numas13/disas" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" targets = ["x86_64-unknown-linux-gnu"] [[bin]] name = "disas" path = "src/main.rs" [dependencies.bpaf] version = "0.9" features = [ "autocomplete", "dull-color", ] [dependencies.disasm] version = "0.4.0" features = ["print"] default-features = false [dependencies.env_logger] version = "0.10.2" features = [ "auto-color", "humantime", ] default-features = false [dependencies.log] version = "0.4.22" optional = true [dependencies.object] version = "0.34" [dependencies.owo-colors] version = "4" optional = true [dependencies.supports-color] version = "2" optional = true [features] all-arch = [ "riscv", "x86", ] block-buffering = [] color = [ "dep:owo-colors", "dep:supports-color", ] default = [ "all-arch", "block-buffering", "parallel", "color", ] parallel = ["dep:log"] riscv = ["disasm/riscv"] x86 = ["disasm/x86"]