rsmt2d_rs/lib.rs
1//! Rust implementation of two dimensional Reed-Solomon merkle tree data availability scheme.
2extern crate reed_solomon_erasure;
3
4pub mod codec;
5pub mod data_square;
6pub mod merkle_tree;
7pub mod rsmt2d;
8
9pub type Matrix2D = Vec<Vec<u8>>;
10pub type Matrix3D = Vec<Vec<Vec<u8>>>;
11
12#[cfg(test)]
13mod tests {
14
15 #[test]
16 fn it_works() {}
17}