mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
46 lines
960 B
TOML
46 lines
960 B
TOML
[workspace]
|
|
|
|
# Listing only the "root" crates of each app/library. All path dependencies are included in the workspace automatically.
|
|
# If you want to add sub crate (like `app/gui/config` or `lib/rust/ensogl/example`), just add it as a path dependency
|
|
# where plausible.
|
|
members = [
|
|
"app/gui",
|
|
"app/gui/enso-profiler-metadata",
|
|
"build/enso-formatter",
|
|
"build/rust-scripts",
|
|
"lib/rust/*",
|
|
"lib/rust/profiler/data",
|
|
"integration-test"
|
|
]
|
|
|
|
# The default memebers are those we want to check and test by default.
|
|
default-members = ["app/gui", "lib/rust/*"]
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
lto = false
|
|
debug = true
|
|
debug-assertions = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
debug = false
|
|
debug-assertions = false
|
|
|
|
[profile.bench]
|
|
opt-level = 3
|
|
lto = true
|
|
debug = false
|
|
debug-assertions = false
|
|
|
|
[profile.test]
|
|
opt-level = 0
|
|
lto = false
|
|
debug = true
|
|
debug-assertions = true
|
|
|
|
[profile.integration-test]
|
|
inherits = "test"
|
|
opt-level = 2
|