summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2024-08-15 20:14:15 -0400
committerMicha White <botahamec@outlook.com>2024-08-15 20:14:15 -0400
commitf8a80039c74332e2101a177ef3fde31ef2077224 (patch)
treef887c96bf9879a28b7ce914ad96161f63ee83190 /Cargo.toml
parent488c7ed94b0662222fa0d825ab81b60b0b1e5d6c (diff)
Lots a changes
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 16 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d481405..8138b5c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[workspace]
-members = ["render", "resources", "tvg"]
+members = ["packer", "textures", "tvg", "scripts", "sprites", "sys", "console"]
resolver = "2"
[package]
@@ -10,7 +10,19 @@ rust-version = "1.65"
publish = false
[dependencies]
-alligator_render = { path = "render" }
+alligator_scripts = { path = "scripts" }
+alligator_sprites = { path = "sprites" }
+alligator_sys = { path = "sys" }
+alligator_textures = { path = "textures" }
-[lib]
-crate-type = ["cdylib", "lib"]
+clap = "4"
+serde = "1"
+serde_json = "1"
+sha3 = "0.10"
+
+[profile.release]
+#strip = "symbols"
+opt-level = 'z'
+#lto = true
+panic = 'abort'
+#codegen-units = 1