| Crates.io | earendil |
| lib.rs | earendil |
| version | 0.5.12 |
| created_at | 2024-02-26 15:23:15.843481+00 |
| updated_at | 2025-07-02 19:33:38.564873+00 |
| description | A decentralized, ban-resistant mixnet |
| homepage | |
| repository | https://github.com/mel-project/earendil |
| max_upload_size | |
| id | 1153872 |
| size | 561,289 |
![]()
Earendil is a decentralized, censorship-resistant packet-routing overlay network designed for performance and censorship resistance. It enables secure and private communication between nodes, even against powerful state-level adversaries.
Currently, the project is extremely early-stage and not ready to use. Stay tuned for updates!
Detailed info can be found in the Earendil documentation.
This repository is laid out as a Cargo workspace.
The primary, "root" crate is earendil, the primary daemon intended to be run on any machine that wishes to access Earendil (similar to the tor daemon for Tor).
Other crates live in libraries/:
earendil_packet implements structs for the Earendil packet format at different layers of the protocol, such as the onion-encrypted mixnet format and the format that carries the end-to-end application messages.earendil_topology implements functionality for Earendil's relay graph, including helper functions for gossipOverall, we follow an architecture where the crates in libraries/ avoid doing any I/O, and instead implement data types. Actual communication is done by the earendil daemon.
See the docs