[package] authors = ["iximeow "] description = "memory-mapped registers for amd64" edition = "2018" keywords = ["amd64", "emulation", "disassembly"] license = "0BSD" name = "of" readme = "README.md" repository = "https://github.com/yuulive/of/" version = "0.1.0" [profile.dev] panic = "abort" [profile.release] panic = "abort" [lib] name = "of" path = "src/lib.rs" crate_type = ["rlib"] [workspace] members = [ "staticlib", ] [dependencies] yaxpeax-x86 = { version = "0.1.5", default-features = false } yaxpeax-arch = { version = "0.0.4", default-features = false, features = [] } libc = { version = "0.2.0", default-features = false, features = [] } [[example]] name = "hello_world" path = "examples/hello_world.rs" [features] default = ["std"] # have to conditionally include panic_handler for no_std builds std = []