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