tracy-client-sys 0.11.0

Low level bindings to the client libraries for the Tracy profiler
Documentation
[package]
name = "tracy-client-sys"
# Don't forget to update the table in README.md
version = "0.11.0"
authors = ["Simonas Kazlauskas <tracy-client-sys@kazlauskas.me>"]
build = "build.rs"
license = "MIT/Apache-2.0"
edition = "2018"
readme = "../README.mkd"
repository = "https://github.com/nagisa/rust_tracy_client"
homepage = "https://github.com/nagisa/rust_tracy_client"
documentation = "https://docs.rs/tracy-client-sys"
description = """
Low level bindings to the client libraries for the Tracy profiler
"""

[dependencies]

[build-dependencies]
cc = { version = "1", default-features = false }

[features]
default = [ "enable" ]
# Enable Tracy. Once this is enable tracy will be initialized at program startup. If not specified,
# the tracy functions are mocked out to no-ops.
enable = []
# Enable delayed init support. Tracy will initialize on first use, rather than during
# life-before-main.
delayed-init = []
# Enable support for running with low resolution timers.
lowres-timer = []
# Do not exit when program finishes execution or crashes. Can also by sent by environment variable
# `TRACY_NO_EXIT`.
noexit = []