talc/Cargo.toml

32 lines
654 B
TOML
Raw Permalink Normal View History

2024-02-21 11:04:18 -05:00
[workspace]
2025-01-06 00:18:13 -05:00
members = ["talc-lang", "talc-bin", "talc-std", "talc-macros", "talc-web"]
2024-02-21 11:04:18 -05:00
resolver = "2"
2024-03-07 19:38:57 -05:00
2024-12-31 22:09:51 -05:00
[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"
2024-11-04 21:39:24 -05:00
[profile.release-opt]
2024-03-07 19:38:57 -05:00
inherits = "release"
lto = "fat"
2024-11-04 21:39:24 -05:00
strip = true
codegen-units = 1
panic = "abort"
2024-12-31 22:09:51 -05:00