diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-05-17 07:39:05 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:30:15 +0100 |
| commit | 587dd5bb80364688419bb43aba4afc044ac0ef48 (patch) | |
| tree | 3f79940572c4b5ff7fab38e9d3a92a908afc8907 /Cargo.toml | |
| download | tools.nes-587dd5bb80364688419bb43aba4afc044ac0ef48.tar.gz tools.nes-587dd5bb80364688419bb43aba4afc044ac0ef48.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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..183a9f1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[workspace] +members = ["lib/*", "crates/*"] +resolver = "2" + +[workspace.package] +rust-version = "1.73" +edition = "2021" +license = "GPLv3+" +authors = ["Miquel Sabaté Solà"] + +[workspace.dependencies] +xixanta = { path = "./lib/xixanta", version = "0.1.0" } |
