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