-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (38 loc) · 1.57 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
52
53
[package]
name = "lc3-traits"
version = "0.1.0"
authors = ["UT UTP <[email protected]>"]
edition = "2021"
workspace = ".."
description = "Traits defining the LC-3's peripherals, memory, and control interface."
homepage = "https://utp.tools"
repository = "http://github.com/ut-utp/prototype"
readme = "README.md"
keywords = ["lc-3", "traits", "peripherals", "utp"]
categories = ["no-std", "simulation"]
license = "MPL-2.0"
[badges]
github-actions = { repository = "ut-utp/prototype", workflow = "traits" }
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" }
log = "0.4.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.41", optional = true }
static_assertions = "1.1.0"
[dev-dependencies]
pretty_assertions = "1.2"
[features]
default = []
std = ["lc3-isa/std"]
json_encoding_layer = ["std", "serde_json"]
[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"