diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-10-29 14:49:44 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:54:51 +0100 |
| commit | d2d6d90acf2e9a8ccb4cbcec619d2a0d49cd462a (patch) | |
| tree | e3c7c11f4ca78d9202a6f85b6fff30a5552baa18 /crates/nasm/Cargo.toml | |
| parent | e9f149a590b019a0c2f55d1fb407461df1119ff2 (diff) | |
| download | tools.nes-d2d6d90acf2e9a8ccb4cbcec619d2a0d49cd462a.tar.gz tools.nes-d2d6d90acf2e9a8ccb4cbcec619d2a0d49cd462a.zip | |
Don't rely on the identifier for control identity
Instead, use a new enum type to identify the control statements that we
actually support. This way the assembler is more easily aware on the
control that it's dealing with, and can be more sure on certain aspects
of the implementation on control support.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/nasm/Cargo.toml')
| -rw-r--r-- | crates/nasm/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/nasm/Cargo.toml b/crates/nasm/Cargo.toml index b89b48c..110e5ad 100644 --- a/crates/nasm/Cargo.toml +++ b/crates/nasm/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" authors = ["Miquel Sabaté Solà <mikisabate@gmail.com>"] [dependencies] -anyhow = "1.0.82" -clap = { version = "4.5.4", features = ["derive"] } +anyhow = "^1" +clap = { version = "^4", features = ["derive"] } xixanta.workspace = true |
