summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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