Files
oak-gpui/tooling/perf/Cargo.toml
T
Nia 11041ef3b0 perf: Greatly expand profiler (#38584)
Expands on #38543 (notably allows setting importance categories and
weights on tests, and a lot of internal refactoring) because I couldn't
help myself. Also allows exporting runs to json and comparing across them. See code for docs.

Release Notes:

- N/A
2025-09-21 13:54:59 +02:00

31 lines
707 B
TOML

[package]
name = "perf"
version = "0.1.0"
description = "A tool for measuring Zed test performance, with too many Clippy lints"
publish.workspace = true
edition.workspace = true
[lib]
# Some personal lint preferences :3
[lints.rust]
missing_docs = "warn"
[lints.clippy]
needless_continue = "allow" # For a convenience macro
all = "warn"
pedantic = "warn"
style = "warn"
missing_docs_in_private_items = "warn"
as_underscore = "deny"
allow_attributes_without_reason = "deny"
let_underscore_must_use = "forbid"
undocumented_unsafe_blocks = "forbid"
missing_safety_doc = "forbid"
[dependencies]
collections.workspace = true
serde.workspace = true
serde_json.workspace = true
workspace-hack.workspace = true