Some checks failed
per-push tests / build (push) Failing after 39s
per-push tests / test-frontend (push) Has been skipped
per-push tests / timed-decomposer-parse (push) Has been skipped
per-push tests / test-utility (push) Has been skipped
per-push tests / test-backend (push) Has been skipped
This commit implements Display and FromStr for Datum, Operation, Operand, Instruction, and Program types. Additionally, tests are added for the new routines. This change was implemented in furtherance of a command line assembler and disassembler, as well as for the implementation of a debugger.
13 lines
293 B
TOML
Executable file
13 lines
293 B
TOML
Executable file
cargo-features = ["profile-rustflags"]
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = ["mycelium", "decomposer", "hyphae", "organelle", "fairy-ring"]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
rustflags = [ "-Zlocation-detail=none", "-Zfmt-debug=none" ]
|