29 lines
937 B
TOML
29 lines
937 B
TOML
[package]
|
|
name = "lazymail"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
description = "A Lazygit-style terminal UI for browsing the git mailing list (public-inbox / lore.kernel.org)"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.104"
|
|
crossterm = "0.29.0"
|
|
ratatui = { version = "0.30.2", features = ["crossterm"] }
|
|
|
|
[lints.rust]
|
|
unsafe_op_in_unsafe_fn = "deny"
|
|
unused_must_use = "deny"
|
|
|
|
# Stub scaffold: pedantic/nursery on, with project-wide opinions below.
|
|
# `module_name_repetitions`: `MockBackend`/`LoreBackend` mirror their real-world
|
|
# counterparts, so the repetition is the point.
|
|
# `must_use_candidate` / `missing_errors_doc`: ad-hoc anyhow errors and tiny
|
|
# style builders make these two lints pure noise in this crate.
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
nursery = { level = "warn", priority = -1 }
|
|
module_name_repetitions = "allow"
|
|
must_use_candidate = "allow"
|
|
missing_errors_doc = "allow"
|