holey-bytes/Cargo.toml

35 lines
555 B
TOML
Raw Normal View History

[workspace]
2023-08-17 18:28:02 -05:00
resolver = "2"
2024-10-10 01:35:17 -05:00
members = [
"bytecode",
"vm",
"xrt",
2024-10-10 01:35:17 -05:00
"xtask",
"lang",
2024-10-10 01:35:17 -05:00
"depell",
"depell/wasm-fmt",
"depell/wasm-hbc",
2024-10-10 01:35:17 -05:00
]
2024-07-18 10:55:55 -05:00
[workspace.dependencies]
hbbytecode = { path = "bytecode", default-features = false }
hbvm = { path = "vm" }
hbxrt = { path = "xrt" }
hblang = { path = "lang", default-features = false }
hbjit = { path = "jit" }
[profile.release]
lto = true
2024-10-01 08:28:18 -05:00
debug = true
#strip = true
codegen-units = 1
panic = "abort"
2024-07-18 10:55:55 -05:00
[profile.small]
inherits = "release"
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"