WIP. Secure, distributed, append-only log structure. Adapted from mafintosh/hypercore.
```rust,ignore extern crate hypercore;
use hypercore::Feed; use std::path::PathBuf;
let path = PathBuf::from("./my-first-dataset"); let mut feed = Feed::new(path).unwrap();
feed.append(b"hello").unwrap(); feed.append(b"world").unwrap();
println!("{:?}", feed.get(0)); // prints "hello" println!("{:?}", feed.get(1)); // prints "world" ```
Ed25519
key pair used to encrypt data with.flat-tree
to keep an index of the
current data.sh
$ cargo add hypercore
MIT OR Apache-2.0