31 lines
654 B
TOML
31 lines
654 B
TOML
[workspace]
|
|
members = ["talc-lang", "talc-bin", "talc-std", "talc-macros", "talc-web"]
|
|
resolver = "2"
|
|
|
|
|
|
[workspace.lints.clippy]
|
|
semicolon_if_nothing_returned = "warn"
|
|
allow_attributes = "warn"
|
|
inconsistent_struct_constructor = "warn"
|
|
uninlined_format_args = "warn"
|
|
single_match_else = "warn"
|
|
redundant_closure_for_method_calls = "warn"
|
|
redundant_closure = "warn"
|
|
redundant_closure_call = "warn"
|
|
map_unwrap_or = "warn"
|
|
map_clone = "warn"
|
|
manual_assert = "warn"
|
|
needless_pass_by_value = "warn"
|
|
unnested_or_patterns = "warn"
|
|
redundant_else = "warn"
|
|
|
|
|
|
[profile.release-opt]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
strip = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
|
|
|