16 lines
462 B
TOML
16 lines
462 B
TOML
[package]
|
|
name = "nemu"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Antifallobst <antifallobst@systemausfall.org>", "Eric-Paul Ickhorn <atnx@protonmail.com>"]
|
|
description = "A small web emulator for simple architectures"
|
|
license = "MIT"
|
|
repository = "https://git.nerdcult.net/nerdcult/nerdemu"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2" |