diff options
Diffstat (limited to 'crates/divina_compile/Cargo.toml')
| -rw-r--r-- | crates/divina_compile/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/divina_compile/Cargo.toml b/crates/divina_compile/Cargo.toml new file mode 100644 index 0000000..f46d27d --- /dev/null +++ b/crates/divina_compile/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "divina_compile" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "Divina's compiler wrapper" +readme = "README.rst" +homepage = "https://divina.land" +repository = "https://github.com/divinaland/Divina" +license = "GPL-3.0-only" +keywords = ["divina", "buildsystem", "build", "assembly", "asm", "nasm", "yasm"] +categories = ["development-tools::build-utils"] +publish = false + +[dependencies] +# Configuration +divina_config = { path = "../divina_config" } + +# Command-line +shellfn = "0.1.1" |