Skip to main content

max / makenotwork

1.6 KB · 46 lines History Blame Raw
1 [package]
2 name = "egui-updater"
3 version = "0.0.0"
4 edition = "2024"
5 license = "MIT"
6 description = "OTA self-update for egui/eframe desktop apps: poll a manifest, verify a minisign signature, download and apply. (Placeholder — implementation in progress.)"
7 readme = "README.md"
8 keywords = ["egui", "eframe", "updater", "self-update", "ota"]
9 categories = ["gui", "development-tools"]
10 # repository/homepage: set before the real release — see README. Omitted on the
11 # 0.0.0 name-reservation placeholder.
12
13 [dependencies]
14
15 [lints.rust]
16 unused = "warn"
17 unreachable_pub = "warn"
18
19 [lints.clippy]
20 pedantic = { level = "warn", priority = -1 }
21 # Allow-list tuned from a measured breakdown across server/multithreaded/pter
22 # (2026-07-22). These are the high-churn / low-signal pedantic lints; everything
23 # else in `pedantic` stays a warning. Keep this block identical across repos.
24 module_name_repetitions = "allow"
25 # Doc lints. No docs-completeness push is underway.
26 missing_errors_doc = "allow"
27 missing_panics_doc = "allow"
28 doc_markdown = "allow"
29 # Numeric casts. Endemic and mostly intentional in size and byte math.
30 cast_possible_truncation = "allow"
31 cast_sign_loss = "allow"
32 cast_precision_loss = "allow"
33 cast_possible_wrap = "allow"
34 cast_lossless = "allow"
35 # Subjective structure and style nags. High churn, low signal.
36 must_use_candidate = "allow"
37 too_many_lines = "allow"
38 struct_excessive_bools = "allow"
39 similar_names = "allow"
40 items_after_statements = "allow"
41 single_match_else = "allow"
42 # Frequent false-positives in TUI and router-heavy code.
43 match_same_arms = "allow"
44 unnecessary_wraps = "allow"
45 type_complexity = "allow"
46