hotpath 0.7.2

Rust performance debug toolkit. Live profiling for allocations, timings, and channel/stream data flows.
Documentation
[[bin]]
name = "hotpath"
path = "bin/main.rs"

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

[dependencies.base64]
version = "0.22"

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

[dependencies.chrono]
optional = true
version = "0.4"

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

[dependencies.colored]
version = "3"

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

[dependencies.crossterm]
optional = true
version = "0.29"

[dependencies.eyre]
version = "0.6"

[dependencies.futures-channel]
features = ["sink"]
optional = true
version = "0.3"

[dependencies.futures-util]
features = ["sink"]
version = "0.3"

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

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

[dependencies.libc]
version = "0.2"

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

[dependencies.quanta]
version = "0.12"

[dependencies.ratatui]
optional = true
version = "0.29"

[dependencies.regex]
version = "1"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tiny_http]
version = "0.12"

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

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

[features]
crossbeam = []
default = []
futures = ["dep:tokio", "tokio/sync", "tokio/macros", "tokio/time", "tokio/rt-multi-thread", "dep:futures-channel"]
hotpath = ["hotpath-macros/hotpath", "hotpath-macros/hotpath-off"]
hotpath-alloc = ["dep:tokio"]
hotpath-off = []
tokio = ["dep:tokio", "tokio/sync", "tokio/macros", "tokio/time", "tokio/rt-multi-thread"]
tui = ["dep:crossterm", "dep:ratatui", "dep:chrono"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools"]
description = "Rust performance debug toolkit. Live profiling for allocations, timings, and channel/stream data flows."
edition = "2021"
license = "MIT"
name = "hotpath"
readme = "README.md"
repository = "https://github.com/pawurb/hotpath"
version = "0.7.2"

[target.'cfg(target_os = "macos")'.dependencies.mach2]
version = "0.6"

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

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

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

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

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

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