Fremkit

Crates.io docs.rs

Fremkit is a simple broadcast 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.

Features

Usage

Add this to your Cargo.toml:

toml [dependencies] fremkit = "^0.1"

Example

```rust use fremkit::bounded::Log;

let log: Log = Log::new(100); log.push(1).unwrap(); log.push(2).unwrap();

asserteq!(log.get(0), Some(&1)); asserteq!(log.get(1), Some(&2)); ```

License

This crate is under the Apache-2.0 License.