typos/Cargo.toml

97 lines
2.3 KiB
TOML
Raw Normal View History

[workspace]
2019-10-28 12:01:22 -04:00
members = [
2022-08-01 15:45:58 -04:00
"crates/*",
2019-10-28 12:01:22 -04:00
]
2023-04-19 09:34:07 -04:00
default-members = ["crates/typos-cli"]
2022-11-01 15:20:38 -04:00
resolver = "2"
2022-11-01 15:20:38 -04:00
[workspace.package]
2019-10-25 11:58:24 -04:00
repository = "https://github.com/crate-ci/typos"
2023-03-29 15:33:22 -04:00
license = "MIT OR Apache-2.0"
2022-06-01 07:53:10 -04:00
edition = "2021"
2023-12-28 11:47:51 -05:00
rust-version = "1.75" # MSRV
2021-11-08 11:11:02 -05:00
include = [
2023-03-29 15:33:22 -04:00
"build.rs",
2021-11-08 11:11:02 -05:00
"src/**/*",
"Cargo.toml",
2022-03-11 10:56:29 -05:00
"Cargo.lock",
2021-11-08 11:11:02 -05:00
"LICENSE*",
"README.md",
2021-11-15 09:22:11 -05:00
"benches/**/*",
2021-11-08 11:11:02 -05:00
"examples/**/*"
]
2019-01-22 17:01:33 -05:00
2024-03-21 11:46:56 -04:00
[workspace.lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
2024-03-21 11:46:56 -04:00
unreachable_pub = "warn"
2024-03-25 13:33:58 -04:00
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
2024-03-21 11:46:56 -04:00
[workspace.lints.clippy]
bool_assert_comparison = "allow"
branches_sharing_code = "allow"
checked_conversions = "warn"
collapsible_else_if = "allow"
create_dir = "warn"
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
doc_markdown = "warn"
empty_enum = "warn"
enum_glob_use = "warn"
expl_impl_clone_on_copy = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
fallible_impl_from = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
float_cmp_const = "warn"
fn_params_excessive_bools = "warn"
from_iter_instead_of_collect = "warn"
if_same_then_else = "allow"
implicit_clone = "warn"
imprecise_flops = "warn"
inconsistent_struct_constructor = "warn"
inefficient_to_string = "warn"
infinite_loop = "warn"
invalid_upcast_comparisons = "warn"
large_digit_groups = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
let_and_return = "allow" # sometimes good to name what you are returning
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
mem_forget = "warn"
mutex_integer = "warn"
needless_for_each = "warn"
negative_feature_names = "warn"
path_buf_push_overwrite = "warn"
ptr_as_ptr = "warn"
rc_mutex = "warn"
redundant_feature_names = "warn"
ref_option_ref = "warn"
rest_pat_in_fully_bound_structs = "warn"
same_functions_in_if_condition = "warn"
self_named_module_files = "warn"
semicolon_if_nothing_returned = "warn"
str_to_string = "warn"
string_add = "warn"
string_add_assign = "warn"
string_lit_as_bytes = "warn"
string_to_string = "warn"
todo = "warn"
trait_duplication_in_bounds = "warn"
uninlined_format_args = "warn"
2024-03-21 11:46:56 -04:00
verbose_file_reads = "warn"
wildcard_imports = "warn"
zero_sized_map_values = "warn"
2020-11-23 13:40:55 -05:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
codegen-units = 1