functiontrace_server/lib.rs
1// Various fields need to be emitted with a specific name for the Firefox Profiler to be happy.
2// In order to allow us to specify these when necessar, we ignore case warnings.
3#![allow(non_snake_case)]
4
5pub mod function_trace;
6
7#[cfg(feature = "server")]
8pub mod profile_generator;
9#[cfg(feature = "server")]
10pub mod trace_streamer;