holey-bytes/Cargo.toml

45 lines
789 B
TOML
Raw Normal View History

2024-10-12 06:07:49 -05:00
cargo-features = ["profile-rustflags"]
[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-12 06:07:49 -05:00
"depell/wasm-rt",
2024-10-10 01:35:17 -05:00
]
2024-07-18 10:55:55 -05:00
[workspace.dependencies]
hbbytecode = { path = "bytecode", default-features = false }
2024-10-12 06:07:49 -05:00
hbvm = { path = "vm", default-features = false }
hbxrt = { path = "xrt" }
hblang = { path = "lang", default-features = false }
hbjit = { path = "jit" }
[profile.release]
lto = true
2024-10-10 12:01:12 -05:00
#debug = true
strip = true
codegen-units = 1
panic = "abort"
2024-07-18 10:55:55 -05:00
[profile.small]
2024-10-12 08:04:58 -05:00
rustflags = ["-Zfmt-debug=none", "-Zlocation-detail=none"]
2024-07-18 10:55:55 -05:00
inherits = "release"
opt-level = "z"
2024-10-12 08:04:58 -05:00
strip = true
2024-07-18 10:55:55 -05:00
lto = true
codegen-units = 1
panic = "abort"
2024-10-12 06:07:49 -05:00
2024-10-12 08:04:58 -05:00
[profile.small-dev]
inherits = "dev"
opt-level = "z"
strip = "debuginfo"
panic = "abort"