profile-inspect 0.1.3

Analyze V8 CPU and heap profiles from Node.js/Chrome DevTools
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "profile-inspect"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Analyze V8 CPU and heap profiles from Node.js/Chrome DevTools"
readme = "README.md"
keywords = [
    "profiler",
    "v8",
    "nodejs",
    "cpu-profile",
    "performance",
]
categories = [
    "command-line-utilities",
    "development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/Dunqing/profile-inspecting"

[lib]
name = "profile_inspect"
path = "src/lib.rs"

[[bin]]
name = "profile-inspect"
path = "src/main.rs"

[[test]]
name = "analysis_tests"
path = "tests/analysis_tests.rs"

[[test]]
name = "fixtures"
path = "tests/fixtures.rs"

[[test]]
name = "ir_tests"
path = "tests/ir_tests.rs"

[[test]]
name = "output_tests"
path = "tests/output_tests.rs"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"

[dependencies.bpaf]
version = "0.9"
features = ["derive"]

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.regex]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"
features = ["unbounded_depth"]

[dependencies.serde_stacker]
version = "0.1"

[dependencies.sourcemap]
version = "9"

[dependencies.thiserror]
version = "2"

[dev-dependencies.insta]
version = "1"

[lints.clippy]
allow_attributes = "warn"
branches_sharing_code = "allow"
clone_on_ref_ptr = "warn"
cognitive_complexity = "allow"
dbg_macro = "warn"
doc_markdown = "allow"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
fallible_impl_from = "allow"
filetype_is_file = "warn"
fn_params_excessive_bools = "allow"
get_unwrap = "warn"
impl_trait_in_params = "allow"
infinite_loop = "warn"
iter_on_single_items = "warn"
map_with_unused_argument_over_ranges = "warn"
missing_const_for_fn = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
non_send_fields_in_send_ty = "allow"
non_std_lazy_statics = "allow"
non_zero_suggestions = "warn"
option_if_let_else = "allow"
or_fun_call = "allow"
pathbuf_init_then_push = "warn"
precedence_bits = "warn"
print_stderr = "warn"
print_stdout = "warn"
pub_underscore_fields = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
rest_pat_in_fully_bound_structs = "warn"
self_named_module_files = "warn"
significant_drop_in_scrutinee = "warn"
significant_drop_tightening = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
suspicious_operation_groupings = "warn"
todo = "warn"
too_long_first_doc_paragraph = "warn"
too_many_arguments = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_safety_comment = "warn"
unused_peekable = "warn"
unused_result_ok = "warn"
use_self = "allow"
useless_let_if_seq = "allow"
wildcard_imports = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
non_ascii_idents = "warn"
tail_expr_drop_order = "warn"
unit-bindings = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_unsafe = "warn"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(coverage)",
    "cfg(coverage_nightly)",
]