-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (36 loc) · 1.53 KB
/
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
49
50
51
[package]
name = "lc3-shims"
version = "0.1.0"
authors = ["UT UTP <[email protected]>"]
edition = "2021"
workspace = ".."
description = "Example implementations of the LC-3 peripherals and memory suitable for simulation."
homepage = "https://utp.tools"
repository = "http://github.com/ut-utp/prototype"
readme = "README.md"
keywords = ["lc-3", "shims", "peripherals", "utp"]
categories = ["simulation"]
license = "MPL-2.0"
[badges]
github-actions = { repository = "ut-utp/prototype", workflow = "shims" }
codecov = { repository = "ut-utp/prototype", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "ut-utp/prototype" }
is-it-maintained-open-issues = { repository = "ut-utp/prototype" }
maintenance = { status = "actively-developed" }
[dependencies]
lc3-isa = { path = "../isa", version = "0.1.0", default-features = false }
lc3-macros = { path = "../macros", version = "0.1.0" }
lc3-traits = { path = "../traits", version = "0.1.0", features = ["std"] }
byteorder = "1.3.2"
timer = "0.2.0"
time = "0.3"
chrono = "0.4.11"
static_assertions = "1.1.0"
[dev-dependencies]
lc3-test-infrastructure = { path = "../test-infrastructure", version = "0.1.0" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "wasm32-unknown-unknown", "thumbv7em-none-eabihf"]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
rustdoc-args = ["--cfg", "docs"] # "--scrape-tests"
all-features = true
default-target = "x86_64-unknown-linux-gnu"