30 lines
450 B
TOML
30 lines
450 B
TOML
[package]
|
|
name = "bussy"
|
|
edition = "2021"
|
|
version.workspace = true
|
|
repository.workspace = true
|
|
|
|
[workspace]
|
|
members = [
|
|
"stage1"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
repository = "https://git.bsd.gay/fef/bussy"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
lto = false
|
|
codegen-units = 1
|
|
debug = true
|
|
overflow-checks = true
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
lto = false
|
|
codegen-units = 1
|
|
debug = true
|
|
overflow-checks = false
|