Secure, distributed, append-only log structure. Adapted from mafintosh/hypercore.
```rust,ignore extern crate hypercore;
use std::path::PathBuf;
let path = PathBuf::from("./my-first-dataset"); let feed = hypercore::Feed::new(path);
feed.append(b"hello")?; feed.append(b"world")?;
println!("{:?}", feed.get(0)); // prints "hello" println!("{:?}", feed.get(1)); // prints "world" ```
sh
$ cargo add hypercore
MIT OR Apache-2.0