* Don't render docs for examples * Don't include a workaround for a problematic nightly feature we no longer use
16 lines
404 B
TOML
16 lines
404 B
TOML
[workspace]
|
|
members = ["crates/*", "examples/*", "xtask"]
|
|
# Only compile / check / document the public crates by default
|
|
default-members = ["crates/*"]
|
|
|
|
resolver = "2"
|
|
|
|
[profile.dev]
|
|
# Speeds up test times by more than 10% in a simple test
|
|
# Set to 1 or 2 if you want to use a debugger in this workspace
|
|
debug = 0
|
|
|
|
[profile.dev.package]
|
|
# Also speeds up test times a little bit
|
|
quote = { opt-level = 2 }
|