30 lines
722 B
TOML
30 lines
722 B
TOML
[package]
|
|
name = "chkr"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
crossterm = "0.29"
|
|
ratatui = { version = "0.30", features = ["crossterm"] }
|
|
anyhow = "1.0"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.33"
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
unused_trait_names = "warn"
|
|
missing_docs_in_private_items = "warn"
|
|
empty_structs_with_brackets = "warn"
|
|
let_underscore_must_use = "warn"
|
|
arbitrary_source_item_ordering = "warn"
|
|
as_conversions = "warn"
|
|
default_constructed_unit_structs = "warn"
|
|
equatable_if_let = "warn"
|
|
indexing_slicing = "warn"
|
|
missing_assert_message = "warn"
|
|
panic_in_result_fn = "warn"
|
|
redundant_closure_for_method_calls = "warn"
|
|
str_to_string = "warn"
|
|
used_underscore_binding = "warn"
|
|
wildcard_enum_match_arm = "warn" |