aperture_shared/lib.rs
1//! Shared types and utilities for Aperture
2//!
3//! This crate contains common data structures, types, and utilities used across
4//! the profiler agent, aggregator, and other components.
5
6pub mod types;
7pub mod utils;
8pub mod wasm;
9
10#[cfg(feature = "wire-protocol")]
11pub mod protocol;
12
13// Re-export commonly used types
14pub use types::{events::*, profile::*};