[package]
edition = "2021"
rust-version = "1.74"
name = "time-graph"
version = "0.3.3"
authors = ["Luthaf <luthaf@luthaf.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Always-on profilling recording function timing and the corresponding call graph
"""
readme = "README.md"
keywords = ["profiling"]
categories = ["development-tools::profiling"]
license = "Apache-2.0/MIT"
repository = "https://github.com/luthaf/time-graph"
[features]
default = []
table = ["unicode-width"]
[lib]
name = "time_graph"
path = "src/lib.rs"
[[example]]
name = "calculation"
path = "examples/calculation.rs"
[[example]]
name = "recursive"
path = "examples/recursive.rs"
[[test]]
name = "attribute"
path = "tests/attribute.rs"
[[test]]
name = "callsite"
path = "tests/callsite.rs"
[[test]]
name = "recursive"
path = "tests/recursive.rs"
[[bench]]
name = "overhead"
path = "benches/overhead.rs"
harness = false
[dependencies.json]
version = "0.12"
optional = true
[dependencies.once_cell]
version = "1"
[dependencies.petgraph]
version = "0.8"
[dependencies.quanta]
version = "0.12"
[dependencies.time-graph-macros]
version = "0.3.3"
[dependencies.unicode-width]
version = "0.2"
optional = true
[dev-dependencies.criterion]
version = "0.8"