komodo 1.0.1

Komodo: cryptographically-proven erasure coding for distributed systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
the following examples have the same general structure:
- [_aPlonK_]aplonk.rs
- [_KZG+_]kzg.rs
- [_Semi-AVID_]semi_avid.rs

```rust
// some imports

fn run() -> Result<(), KomodoError> {
    // the example itself

    Ok(())
}

fn main() {
    run().unwrap();
}