SVC16/Cargo.toml
JanNeuendorf cf3306eeb2
Debug instruction (#12)
This combines the SET and INST instructions into one SET instruction and adds DEBUG for opcode 10.
This is a breaking change, but the migration is very simple.
2025-01-06 18:37:34 +01:00

20 lines
393 B
TOML

[package]
name = "svc16"
version = "0.9.0"
edition = "2021"
authors = ["Jan Neuendorf"]
description = "An emulator for a simple virtual computer"
license="MIT"
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive"] }
flate2 = "1.0.35"
gilrs = { version = "0.11.0",optional=true}
macroquad = "0.4.13"
thiserror = "2.0.3"
[features]
default=[]
gamepad = ["gilrs"]