[package] name = "flatrv" version = "0.1.1" authors = ["losfair "] edition = "2018" description = "A cross-platform RISC-V interpreter that implements the RV32IM instruction set." license = "MIT" repository = "https://github.com/losfair/FlatRv" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] spin = "0.5" bitflags = "1.2" goblin = { version = "0.1", default-features = false, features = ["elf32"], optional = true } [features] default = ["ext-a", "elf"] ext-a = [] elf = ["goblin"]