minisketch-rs
is a wrapper around minisketch,
a C library by Pieter Wuille for efficient set reconciliation.
minisketch is proposed as a part of an Erlay technique for bandwidth-efficient TX propagation in Bitcoin.
This library exposes type-safe Rust bindings to all minisketch
functions by providing Minisketch
structure.
Add dependency in Cargo.toml:
[dependencies]
minisketch-rs = "0.1"
Generate sketches from your sets of data, serialize those sketches and send them around. Reconcile sets between peers by merging sketches.
See the examples.