rvemu 0.0.6

RISC-V emulator core implementation.
Documentation
[package]
name = "rvemu"
description = "RISC-V emulator core implementation."
version = "0.0.6"
authors = ["Asami Doi <d0iasm.pub@gmail.com>"]
edition = "2018"
repository = "https://github.com/d0iasm/rvemu"
license = "MIT"
keywords = ["riscv", "risc-v", "emulator"]
categories = ["emulators", "simulation"]
readme = "USAGE.md"
include = [
  "Cargo.toml",
  "Cargo.lock",
  "src/**/*",
  "LICENSE",
  "Makefile",
  "README.md",
  "USAGE.md",
]

[lib]
crate-type = ["cdylib", "rlib"]

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.59"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.36"
features = [
  'Document',
  'Element',
  'HtmlElement',
  'Node',
  'Window',
]

[workspace]
members = [
  "lib/rvemu-cli",
  "lib/rvemu-wasm",
]

[profile.release]
debug = true
opt-level = 3