From f8a80039c74332e2101a177ef3fde31ef2077224 Mon Sep 17 00:00:00 2001 From: Micha White Date: Thu, 15 Aug 2024 20:14:15 -0400 Subject: Lots a changes --- Cargo.toml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'Cargo.toml') 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 -- cgit v1.2.3