[package]
edition = "2021"
rust-version = "1.88"
name = "backbeat"
version = "0.1.2"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A system-wide flight recorder with a self-describing, schema-driven on-disk format"
documentation = "https://docs.rs/backbeat"
readme = "README.md"
keywords = [
"tracing",
"flight-recorder",
"observability",
"profiling",
"no-std",
]
categories = [
"development-tools::debugging",
"development-tools::profiling",
"no-std",
]
license = "MIT"
repository = "https://github.com/camshaft/backbeat"
[features]
bach = [
"std",
"dep:bach",
]
capture = []
default = [
"std",
"capture",
]
std = [
"dep:inventory",
"dep:libc",
]
[lib]
name = "backbeat"
path = "src/lib.rs"
[[test]]
name = "derive_smoke"
path = "tests/derive_smoke.rs"
[[test]]
name = "global"
path = "tests/global.rs"
[[test]]
name = "global_limit"
path = "tests/global_limit.rs"
[dependencies.bach]
version = "0.1.2"
optional = true
[dependencies.backbeat-macros]
version = "0.1.2"
[dependencies.bytes]
version = "1"
default-features = false
[dependencies.inventory]
version = "0.3"
optional = true
[dependencies.zerocopy]
version = "0.8"
features = ["derive"]
default-features = false
[dev-dependencies.zerocopy]
version = "0.8"
features = ["derive"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
optional = true