diff options
| author | Cody <cody@codyq.dev> | 2023-03-30 02:44:54 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-03-30 02:44:54 -0500 |
| commit | 2970520a9592b5c6d45291f54073552a474b71b4 (patch) | |
| tree | f42ecc1be0989367cf7c70d0b7909bac0b86904e /Cargo.toml | |
| parent | bb95375f8b24141bf7dfe5a8b1bba5c995f61253 (diff) | |
| download | sloth-2970520a9592b5c6d45291f54073552a474b71b4.tar.gz | |
Restructure
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -1,13 +1,15 @@ -[package] -name = "sloth" -version = "0.1.0" -edition = "2021" +[workspace] +members = [ + "crates/sloth", + "crates/sloth_bytecode", + "crates/sloth_vm", +] -[dependencies] -itertools = "0.10.5" -thiserror = "1.0.40" +[profile.dev.package."*"] +opt-level = 2 [profile.release] strip = "debuginfo" lto = "thin" -opt-level = "z" +opt-level = 3 + |
