84 lines
2 KiB
TOML
84 lines
2 KiB
TOML
# 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 = "2018"
|
|
name = "tracy-client"
|
|
version = "0.15.2"
|
|
authors = ["Simonas Kazlauskas <tracy-client@kazlauskas.me>"]
|
|
description = """
|
|
High level bindings to the client libraries for the Tracy profiler
|
|
"""
|
|
homepage = "https://github.com/nagisa/rust_tracy_client"
|
|
documentation = "https://docs.rs/tracy-client"
|
|
readme = "README.mkd"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/nagisa/rust_tracy_client"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"tracy_client_docs",
|
|
]
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "tests/tests.rs"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "loom"
|
|
path = "tests/loom.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "client"
|
|
path = "benches/client.rs"
|
|
harness = false
|
|
|
|
[dependencies.once_cell]
|
|
version = "1.10"
|
|
|
|
[dependencies.sys]
|
|
version = ">=0.17.0, <0.22.0"
|
|
features = [
|
|
"manual-lifetime",
|
|
"delayed-init",
|
|
]
|
|
default-features = false
|
|
package = "tracy-client-sys"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.3"
|
|
|
|
[features]
|
|
broadcast = ["sys/broadcast"]
|
|
code-transfer = ["sys/code-transfer"]
|
|
context-switch-tracing = ["sys/context-switch-tracing"]
|
|
default = [
|
|
"enable",
|
|
"system-tracing",
|
|
"context-switch-tracing",
|
|
"sampling",
|
|
"code-transfer",
|
|
"broadcast",
|
|
]
|
|
enable = ["sys/enable"]
|
|
fibers = ["sys/fibers"]
|
|
ondemand = ["sys/ondemand"]
|
|
only-ipv4 = ["sys/only-ipv4"]
|
|
only-localhost = ["sys/only-localhost"]
|
|
sampling = ["sys/sampling"]
|
|
system-tracing = ["sys/system-tracing"]
|
|
timer-fallback = ["sys/timer-fallback"]
|
|
|
|
[target."cfg(loom)".dependencies.loom]
|
|
version = "0.5"
|