1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
extern crate byteorder;
#[cfg(feature = "with_kafka")]
extern crate kafka;

mod varint;

pub mod error;

/// Utilities to consume from a byte stream
pub mod byte_consumer;

/// Utilities to convert between stream types
pub mod converter;

/// Define stream types
pub mod stream;

#[cfg(feature = "with_kafka")]
/// Utilities to consume from Kafka
pub mod kafka_consumer;