hotpath 0.5.0

A simple Rust profiler that shows exactly where your code spends time and allocates memory
Documentation
[[bin]]
name = "hotpath"
path = "bin/main.rs"

[dependencies.arc-swap]
version = "1.7"

[dependencies.cfg-if]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.colored]
version = "3"

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.eyre]
version = "0.6"

[dependencies.hdrhistogram]
default-features = false
version = "7.5"

[dependencies.hotpath-macros]
version = "0.5.0"

[dependencies.prettytable-rs]
default-features = false
version = "0.10"

[dependencies.quanta]
version = "0.12"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
features = ["rt"]
optional = true
version = "1.47"

[dependencies.ureq]
features = ["json"]
version = "3.1"

[features]
default = []
hotpath = ["hotpath-macros/hotpath", "hotpath-macros/hotpath-off"]
hotpath-alloc-bytes-total = ["dep:tokio"]
hotpath-alloc-count-total = ["dep:tokio"]
hotpath-ci = []
hotpath-off = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools"]
description = " A simple Rust profiler that shows exactly where your code spends time and allocates memory"
edition = "2021"
license = "MIT"
name = "hotpath"
readme = "README.md"
repository = "https://github.com/pawurb/hotpath"
version = "0.5.0"

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