-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
48 lines (43 loc) · 860 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "rvemu"
description = "RISC-V emulator core implementation."
version = "0.0.11"
authors = ["Asami Doi"]
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]
js-sys = "0.3.50"
wasm-bindgen = "0.2.73"
wasm-bindgen-futures = "0.4.23"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.50"
features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Window',
]
[workspace]
members = [
"lib/rvemu-cli",
"lib/rvemu-wasm",
]
[profile.release]
debug = true
opt-level = 3