rust_tracy_client
rust_tracy_client copied to clipboard
Tracy client libraries for Rust
Once in a while our test that tests MSRV breaks, usually due to dependency changes, and currently the best action to resolve this is to test a higher version. We...
In `tracy-client-sys` in `build.rs`, inside the `build_tracy_client` function, you build `libtracy-client.a` via the `cc` package. On Windows, we are being provided external `dll`'s that link against the C runtime _statically_....
The compatibility table is currently missing the latest version (tracing-tracy 0.11.0 and tracy-client 0.17.0)
Closes #120
There doesn't seem to be a way to enable the TRACY_DEBUGINFOD feature.
Adds support for custom demangler functions with the signature `fn(&str, &mut Buffer) -> std::fmt::Result` where `Buffer` is an opaque type that only exposes an implementation of `std::fmt::Write`. The default implementation...
Loom is currently only being used as a dependency for tests, as far as I can tell. However, it is included using `[target.'cfg(loom)'.dependencies.loom]`. This comes with a few issues, mainly...
It'd be lovely if potential contributors could run the unit tests that rely on loom. Currently, I do not know how to run those. `RUSTFLAGS="--cfg loom" cargo test --release` does...
We have a bunch of code that's generated by another language, and a build script creates the rust bindings for every method defined in the other language. It'd be really...