[[bench]]
harness = false
name = "benchmark"
[dependencies.anyhow]
optional = true
version = "1.0"
[dependencies.bincode]
optional = true
version = "1.3"
[dependencies.byteorder]
version = "1.0"
[dependencies.once_cell]
version = "1.0"
[dependencies.parking_lot]
optional = true
version = "0.12"
[dependencies.serde]
features = ["derive", "rc"]
optional = true
version = "1.0"
[dev-dependencies.criterion]
version = "0.3"
[features]
default = []
packing = ["anyhow", "bincode", "parking_lot", "serde", "zstd", "ruzstd"]
serialization = ["packing"]
[package]
authors = ["Embark <opensource@embark-studios.com>"]
categories = ["development-tools::profiling"]
description = "Simple instrumentation profiler for games"
edition = "2018"
homepage = "https://github.com/EmbarkStudios/puffin"
include = ["**/*.rs", "Cargo.toml", "README.md"]
keywords = ["profiler", "instrumentation", "gamedev"]
license = "MIT OR Apache-2.0"
name = "puffin"
readme = "README.md"
repository = "https://github.com/EmbarkStudios/puffin"
resolver = "2"
version = "0.13.3"
[package.metadata.docs.rs]
all-features = true
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.zstd]
optional = true
version = "0.11.1"
[target."cfg(target_arch = \"wasm32\")".dependencies.ruzstd]
optional = true
version = "0.2.4"