scylla_rs/cql/mod.rs
1// Copyright 2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! This module implements the binary Cql protocol V4.
5//! See `https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec` for more details.
6
7#![warn(missing_docs)]
8pub mod compression;
9mod connection;
10mod frame;
11mod murmur3;
12mod tests;
13
14pub use connection::*;
15/// This is the public API of this module
16pub use frame::*;
17
18pub use murmur3::murmur3_cassandra_x64_128;
19
20/// expose MyCompression
21pub use compression::MyCompression;