1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! This module exposes the types for the Sentry protocol in different versions.
#[cfg(feature = "protocol")]
pub mod v7;
/// The latest version of the protocol.
pub const LATEST: u16 = 7;
#[cfg(feature = "protocol")]
pub use v7 as latest;
mod attachment;
mod envelope;
mod session;