aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: fed9008de5e22d5a48c794d4f00ac0745e123fa8 (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_bytecode",
    "crates/sloth_bytecode/macros",
    "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