aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 57e0bc416222e38ad462b4febb13260fe71cf290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[workspace]
members = [
    "crates/sloth",
    "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