aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 118519ef9806dbc32267f9d373ca070d1c5b34f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[workspace]
members = [
    "crates/sloth",
    "crates/sloth_asm",
    "crates/sloth_bytecode",
    "crates/sloth_vm",
]

[workspace.package]
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"

[profile.dev.package."*"]
opt-level = 2

[profile.release]
strip = "debuginfo"
lto = "thin"
opt-level = 3