# 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" name = "dasm" version = "0.1.2" authors = ["David Cruz "] build = "build/main.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "A tiny, zero dependency assembler" readme = "README.md" keywords = [ "assembler", "jit", "dasm", "x86", "codegen", ] categories = [ "os", "no-std", "no-std::no-alloc", ] license = "GPL-3.0" repository = "https://github.com/DvvCz/dasm" [lib] name = "dasm" path = "src/lib.rs" [[test]] name = "amd64" path = "tests/amd64.rs" [[test]] name = "x86" path = "tests/x86.rs" [build-dependencies.indoc] version = "2.0.5" [features] default = [ "std", "mmap", ] mmap = [] std = []