functiontrace-server 0.8.6

The server component that FunctionTrace (functiontrace.com) clients will spawn and connect to
Documentation
1
2
3
4
5
6
7
8
9
10
// Various fields need to be emitted with a specific name for the Firefox Profiler to be happy.
// In order to allow us to specify these when necessar, we ignore case warnings.
#![allow(non_snake_case)]

pub mod function_trace;

#[cfg(feature = "server")]
pub mod profile_generator;
#[cfg(feature = "server")]
pub mod trace_streamer;