riblt 0.1.1

A Rust implementation of the Rateless Invertable Bloom Lookup Table (RIBLT) data structure.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "riblt"
version = "0.1.1"
edition = "2021"
authors = ["Sam Wighton"]
license-file = "LICENSE"
description = "A Rust implementation of the Rateless Invertable Bloom Lookup Table (RIBLT) data structure."
repository = "https://github.com/samWighton/rateless_iblt"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[dependencies]
serde = { version = "1.0.203", features = ["derive"] }

[dev-dependencies]
bincode = "1.3.3"