A toolkit library for distributed software
Go to file
Alex cbc21e40ac
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Impose static lifetime on message and response
2022-07-22 14:45:28 +02:00
examples Hide streaming versions as much as possible 2022-07-22 10:55:37 +02:00
src Impose static lifetime on message and response 2022-07-22 14:45:28 +02:00
.drone.yml Add missing deps to drone 2022-02-21 12:20:19 +01:00
.gitignore First commit 2020-12-02 13:30:47 +01:00
Cargo.lock Use Bytes instead of Vec<u8> 2022-07-21 18:15:07 +02:00
Cargo.toml Rename AutoSerialize into SimpleMessage and refactor a bit 2022-07-21 19:05:51 +02:00
LICENSE Prepare Cargo.toml for publication 2020-12-14 11:35:41 +01:00
Makefile Move things around 2022-07-21 17:37:52 +02:00
README.md Add CI badge 2021-02-18 12:10:10 +01:00
rustfmt.toml First commit 2020-12-02 13:30:47 +01:00

Netapp - a toolkit library for distributed software

Build Status

Netapp is a Rust library that takes care of a few common tasks in distributed software:

  • establishing secure connections
  • managing connection lifetime, reconnecting on failure
  • checking peer's state
  • peer discovery
  • query/response message passing model for communications
  • multiplexing transfers over a connection
  • overlay networks: full mesh, and byzantine-tolerant random peer sampling using Bᴀsᴀʟᴛ.

See examples folder to learn how to use netapp.