1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![cfg_attr(feature = "dev", feature(plugin))]
#![cfg_attr(feature = "dev", plugin(clippy))]

//! `fruently` is a yet another Fluentd logger for Rust.

extern crate time;
extern crate retry;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate rmp;
extern crate rmp_serde;
extern crate byteorder;

pub mod fluent;
pub mod record;
pub mod forwardable;
pub mod retry_conf;
pub mod store_buffer;
pub mod error;
#[cfg(not(feature = "time-as-integer"))]
pub mod event_record;
#[cfg(not(feature = "time-as-integer"))]
pub mod event_time;
pub mod dumpable;