1//! This module exposes the types for the Sentry protocol in different versions.
23#[cfg(feature = "protocol")]
4pub mod v7;
56/// The latest version of the protocol.
7pub const LATEST: u16 = 7;
89#[cfg(feature = "protocol")]
10pub use v7 as latest;
1112mod envelope;
13mod session;