What's relation of rust-libp2p and the libp2p in this project #1277
-
I had researched a few time at [rust-libp2p], then I recently found this project. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I have previously worked with and on libp2p and rust-libp2p. Iroh is a different take on some similar issues you run into when trying to build more peer to peer based applications. But iroh itself currently does not use libp2p, and tries to solve for a specific set of protocols used on the wire. libp2p gives you a set of different protocols and extensions to connect peers in a peer to peer fashion. Historically the first version of iroh (now known as beetle), which aimed at being a fully compatible IPFS node did use rust-libp2p. But as said above, the current version does not anymore. |
Beta Was this translation helpful? Give feedback.
I have previously worked with and on libp2p and rust-libp2p. Iroh is a different take on some similar issues you run into when trying to build more peer to peer based applications. But iroh itself currently does not use libp2p, and tries to solve for a specific set of protocols used on the wire. libp2p gives you a set of different protocols and extensions to connect peers in a peer to peer fashion.
Historically the first version of iroh (now known as beetle), which aimed at being a fully compatible IPFS node did use rust-libp2p. But as said above, the current version does not anymore.