aboutsummaryrefslogtreecommitdiff
path: root/crates/nasm/Cargo.toml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-05-17 07:39:05 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-12 07:30:15 +0100
commit587dd5bb80364688419bb43aba4afc044ac0ef48 (patch)
tree3f79940572c4b5ff7fab38e9d3a92a908afc8907 /crates/nasm/Cargo.toml
downloadtools.nes-587dd5bb8036.tar.gz
tools.nes-587dd5bb8036.zip
Initial commit
A lot is missing and there is a long road ahead to make the assembler even work. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/nasm/Cargo.toml')
-rw-r--r--crates/nasm/Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/nasm/Cargo.toml b/crates/nasm/Cargo.toml
new file mode 100644
index 0000000..e1f3e88
--- /dev/null
+++ b/crates/nasm/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "nasm"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+anyhow = "1.0.82"
+clap = { version = "4.5.4", features = ["derive"] }
+xixanta.workspace = true