1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(clippy::all)]
#![allow(clippy::derive_partial_eq_without_eq)]

pub mod core;
pub mod data;
pub mod error;
pub mod grpc;

/// Version of the protocol implemented by this crate.
///
/// Note that until the protocol is stabilized, breaking changes may still
/// occur without changing this version number.
pub const PROTOCOL_VERSION: u32 = 1;