WIP. Secure, distributed, append-only log structure. Adapted from mafintosh/hypercore.
```rust let mut feed = hypercore::open("./feed.db").await?;
feed.append(b"hello").await?; feed.append(b"world").await?;
asserteq!(feed.get(0).await?, Some(b"hello".tovec())); asserteq!(feed.get(1).await?, Some(b"world".tovec())); ```
sh
$ cargo add hypercore
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
MIT OR Apache-2.0