[package]
edition = "2021"
rust-version = "1.59"
name = "piano-runtime"
version = "0.14.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency timing and allocation tracking runtime for piano profiler"
readme = false
keywords = [
"profiling",
"instrumentation",
]
categories = ["development-tools::profiling"]
license = "MIT"
repository = "https://github.com/rocketman-code/piano"
resolver = "3"
[features]
_test_internals = []
[lib]
name = "piano_runtime"
path = "src/lib.rs"
[[example]]
name = "codegen_inspect"
path = "examples/codegen_inspect.rs"
[[test]]
name = "alloc"
path = "tests/alloc.rs"
[[test]]
name = "alloc_failing"
path = "tests/alloc_failing.rs"
[[test]]
name = "asm_codegen"
path = "tests/asm_codegen.rs"
[[test]]
name = "codegen_patterns"
path = "tests/codegen_patterns.rs"
[[test]]
name = "compositions"
path = "tests/compositions.rs"
[[test]]
name = "enter"
path = "tests/enter.rs"
[[test]]
name = "enter_async"
path = "tests/enter_async.rs"
[[test]]
name = "file_sink"
path = "tests/file_sink.rs"
[[test]]
name = "glibc_signal_enumeration"
path = "tests/glibc_signal_enumeration.rs"
[[test]]
name = "guard"
path = "tests/guard.rs"
[[test]]
name = "no_test_backdoors"
path = "tests/no_test_backdoors.rs"
[[test]]
name = "output_format"
path = "tests/output_format.rs"
[[test]]
name = "piano_allocator"
path = "tests/piano_allocator.rs"
[[test]]
name = "rust_source_enumeration"
path = "tests/rust_source_enumeration.rs"
[[test]]
name = "session"
path = "tests/session.rs"
[[test]]
name = "shutdown_safety"
path = "tests/shutdown_safety.rs"
[[test]]
name = "signal"
path = "tests/signal.rs"
[[bench]]
name = "piano_future_overhead"
path = "benches/piano_future_overhead.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]