backbeat 0.1.1

A system-wide flight recorder with a self-describing, schema-driven on-disk format
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.88"
name = "backbeat"
version = "0.1.1"
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.1"

[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