minor changes

This commit is contained in:
2026-09-12 21:15:42 -04:00
parent 8f291956fc
commit 742efa545a
29 changed files with 6779 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
[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"