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;
6pub mod profile_generator;
7pub mod trace_streamer;