-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 776 Bytes
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
[package]
name = "lc3sim"
version = "0.1.1"
rust-version = "1.82"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "lc3sim_project"
path = "src/lib.rs"
[[bin]]
name = "lc3sim"
path = "src/cli.rs"
[[bin]]
name = "testcli"
path = "src/testcli.rs"
[dependencies]
anyhow = "1.0.95"
once_cell = "1.20.2"
regex = "1.11.1"
strum = { version = "0.27.1", features = ["derive"] }
strum_macros = "0.27.1"
# To reduce error boilerplate
thiserror = "2"
[dev-dependencies]
# To reduce getter boilerplate
derive-getters = "0.5"
# More efficient map initialization
once_map = "0.4"
# Reducing test writing boilerplate via macro
paste = "1"
# Random tempfile names
uuid = { version = "1", features = ["v4"] }