sentry_types/protocol/
mod.rs

1//! This module exposes the types for the Sentry protocol in different versions.
2
3// We would like to reserve the possibility to add floating point numbers to
4// protocol types without breaking API (removing Eq) in the future.
5#![allow(clippy::derive_partial_eq_without_eq)]
6
7#[cfg(feature = "protocol")]
8pub mod v7;
9
10/// The latest version of the protocol.
11pub const LATEST: u16 = 7;
12
13#[cfg(feature = "protocol")]
14pub use v7 as latest;
15
16mod attachment;
17mod envelope;
18mod profile;
19mod session;