aperture-shared 0.1.0

Shared types and utilities for Aperture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared types and utilities for Aperture
//!
//! This crate contains common data structures, types, and utilities used across
//! the profiler agent, aggregator, and other components.

pub mod types;
pub mod utils;
pub mod wasm;

#[cfg(feature = "wire-protocol")]
pub mod protocol;

// Re-export commonly used types
pub use types::{events::*, profile::*};