WIP. Secure, distributed, append-only log structure. Adapted from mafintosh/hypercore.
let mut feed = hypercore::open("./feed.db")?;
feed.append(b"hello")?;
feed.append(b"world")?;
assert_eq!(feed.get(0)?, Some(b"hello".to_vec()));
assert_eq!(feed.get(1)?, Some(b"world".to_vec()));
$ 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
Version | Tag | Published |
---|---|---|
0.11.1-beta.10 | 2yrs ago | |
0.11.1-beta.9 | 2yrs ago | |
0.11.1-beta.8 | 2yrs ago | |
0.11.1-beta.7 | 2yrs ago |