From d2d6d90acf2e9a8ccb4cbcec619d2a0d49cd462a Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 29 Oct 2024 14:49:44 +0100 Subject: Don't rely on the identifier for control identity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- crates/nasm/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/nasm') 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à "] [dependencies] -anyhow = "1.0.82" -clap = { version = "4.5.4", features = ["derive"] } +anyhow = "^1" +clap = { version = "^4", features = ["derive"] } xixanta.workspace = true -- cgit v1.2.3