Cargo.toml

 1[package]
 2name = "perf"
 3version = "0.1.0"
 4description = "A tool for measuring Zed test performance, with too many Clippy lints"
 5publish.workspace = true
 6edition.workspace = true
 7
 8[lib]
 9
10# Some personal lint preferences :3
11[lints.rust]
12missing_docs = "warn"
13
14[lints.clippy]
15needless_continue = "allow" # For a convenience macro
16all = "warn"
17pedantic = "warn"
18style = "warn"
19missing_docs_in_private_items = "warn"
20as_underscore = "deny"
21allow_attributes = "deny"
22allow_attributes_without_reason = "deny" # This covers `expect` also, since we deny `allow`
23let_underscore_must_use = "forbid"
24undocumented_unsafe_blocks = "forbid"
25missing_safety_doc = "forbid"
26disallowed_methods = { level = "allow", priority = 1}
27
28[dependencies]
29collections.workspace = true
30serde.workspace = true
31serde_json.workspace = true
32workspace-hack.workspace = true