[package] name = "arch-ops" version = "0.1.1" authors = ["chorm", "rdrpenguin"] description = "A library to encode and decode instructions for several architectures" edition = "2018" rust-version = "1.56" license = "BSD-2-Clause-Patent" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] lazy_static = "1" target-tuples = "0.5.5" [features] x86 = [] arm = [] aarch64 = [] w65 = ["m6502"] riscv = [] propeller = [] propeller2 = [] m6502 = [] clever = [] m68k = [] z80 = [] default-archs = ["x86","arm","aarch64","w65","riscv","propeller","propeller2", "m6502", "clever", "m68k"] default = ["default-archs"] all-archs = ["default-archs"] all = ["all-archs","z80"]