diff options
| author | Micha White <botahamec@outlook.com> | 2024-08-15 20:14:15 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2024-08-15 20:14:15 -0400 |
| commit | f8a80039c74332e2101a177ef3fde31ef2077224 (patch) | |
| tree | f887c96bf9879a28b7ce914ad96161f63ee83190 /Cargo.toml | |
| parent | 488c7ed94b0662222fa0d825ab81b60b0b1e5d6c (diff) | |
Lots a changes
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -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 |
