The blockset application is a command line program that can store and retrieve data blocks using a content-dependent tree (CDT) hash function as a universal address of the blocks.
Articles:
- Rust.
- For Windows, you may need Visual C++. You can get either
- by installing Microsoft C++ Build Tools,
- or adding Desktop development with C++ to Visual Studio.
To install the latest stable version from crates.io, run:
cargo install blocksetTo install the current version from the main branch, run:
cargo install --git https://github.com/datablockset/blocksetTo unininstall the blockset, run:
cargo uninstall blocksetInternal documentation: https://blockset.pages.dev/.
- Make it simple.
- Avoid
unsafecode. Currently, we don't haveunsafecode. - No I/O is allowed in a library. We have 100% code coverage.
- Make
constfunctions if possible. - Avoid using macros. Allowed macros:
derive,cfg,test,assert..,wasm_bindgen_test. - Avoid using third-party dependencies, especially if they use I/O directly.