1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! 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;