rapids_rs/
lib.rs

1#![warn(clippy::pedantic)]
2#![allow(clippy::doc_markdown)]
3#![doc = include_str!("../README.md")]
4
5//! ## ⚠️ Weird API Parts
6//! #### Result Types
7//! This library contains two result types used with the River
8//! protocol. Information on which to use can be found in the
9//! docs for [`types::result`]. While information on why there
10//! are two can be found in the [`types`] page.
11
12pub mod codecs;
13pub mod dispatch;
14pub mod types;
15pub mod utils;
16
17use crate::types::ProtocolVersion;
18
19/// The protocol version currently supported by this library. At the moment this is v2.0
20pub const PROTOCOL_VERSION: ProtocolVersion = ProtocolVersion::V2_0;