-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 947 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
[package]
name = "checksmix"
version = "0.2.15"
edition = "2024"
authors = ["John Cairns <john@2ad.com>"]
description = "A simplified MIX simulator - Donald Knuth's hypothetical computer for teaching and learning assembly language programming."
license = "BSD-3-Clause"
repository = "https://github.com/jac18281828/checksmix"
keywords = ["mmix", "simulator", "knuth", "assembly", "educational"]
categories = ["simulation", "emulators"]
exclude = ["examples/*", "README.md", "docs/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "checksmix"
path = "src/bin/checksmix.rs"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[dependencies]
pest = "2.7"
pest_derive = "2.7"
lyn = "0.1.0"
tracing = "0.1.44"
regex = "1.10"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4.5", features = ["derive"] }