talc/Cargo.toml
trimill e7716d038e
All checks were successful
docs / test (push) Successful in 13s
webrepl / test (push) Successful in 3m58s
fixes
2025-01-18 19:06:58 -05:00

32 lines
715 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"
cast_possible_wrap = "warn"
cast_possible_truncation = "warn"
[profile.release-opt]
inherits = "release"
lto = "fat"
strip = true
codegen-units = 1
panic = "abort"