profile-inspect 0.1.3

Analyze V8 CPU and heap profiles from Node.js/Chrome DevTools
Documentation
# cargo-release configuration
# https://github.com/crate-ci/cargo-release

# Allow releasing from main branch only
allow-branch = ["master"]

# Pre-release hook: generate changelog with git-cliff
pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]

# Commit message format
pre-release-commit-message = "chore(release): {{version}}"

# Tag format
tag-name = "v{{version}}"
tag-message = "Release {{version}}"

# Don't publish to crates.io (CI handles this)
publish = false

# Push commits and tags
push = true