fremkit 0.1.1

A simple broadcast log
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Fremkit is simple broadcast log.
//!
//! It provides `Log`, a simple, fast, and thread-safe log.
//!
//! A Log's primary use case is to store an immutable sequence of messages, events, or other data, and to allow
//! multiple readers to access the data concurrently.

mod log;
mod sync;

pub use crate::log::bounded;
pub use crate::log::error::LogError;