# 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 = "asmkit-rs" version = "0.1.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Portable assembler toolkit: decoding and encoding of various architectures" readme = "README.md" keywords = [ "assembler", "asm", "jit", "riscv", "x86", ] license = "MIT OR Apache-2.0" repository = "https://github.com/playx18/asmkit" [profile.release] panic = "abort" [lib] name = "asmkit" path = "src/lib.rs" [[bin]] name = "asmkit-rs" path = "src/main.rs" [[example]] name = "factorial" path = "examples/factorial.rs" [[example]] name = "reloc" path = "examples/reloc.rs" [dependencies.cfgenius] version = "0.1" [dependencies.derive_more] version = "1.0.0" features = [ "deref", "deref_mut", "try_from", "add", ] [dependencies.errno] version = "0.3.9" optional = true [dependencies.intrusive-collections] version = "0.9" [dependencies.libc] version = "0.2.162" optional = true [dependencies.num-traits] version = "0.2.19" [dependencies.paste] version = "1.0" [dependencies.smallvec] version = "1.13" [features] default = [ "jit", "riscv", "x86", ] jit = [ "wasmtime-jit-icache-coherence", "libc", "errno", ] riscv = [] x86 = [] [target.'cfg(target_arch="riscv64")'.dependencies.wasmtime-jit-icache-coherence] version = "26.0.1" optional = true