mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-29 17:51:35 +00:00
Add the two missing libraries from the facade (#196)
This commit is contained in:
@ -14,6 +14,8 @@ libp2p-kad = { path = "../kad" }
|
|||||||
libp2p-floodsub = { path = "../floodsub" }
|
libp2p-floodsub = { path = "../floodsub" }
|
||||||
libp2p-peerstore = { path = "../peerstore" }
|
libp2p-peerstore = { path = "../peerstore" }
|
||||||
libp2p-ping = { path = "../ping" }
|
libp2p-ping = { path = "../ping" }
|
||||||
|
libp2p-ratelimit = { path = "../ratelimit" }
|
||||||
|
libp2p-relay = { path = "../relay" }
|
||||||
#libp2p-secio = { path = "../secio" }
|
#libp2p-secio = { path = "../secio" }
|
||||||
libp2p-core = { path = "../core" }
|
libp2p-core = { path = "../core" }
|
||||||
libp2p-tcp-transport = { path = "../tcp-transport" }
|
libp2p-tcp-transport = { path = "../tcp-transport" }
|
||||||
|
@ -31,6 +31,8 @@ pub extern crate libp2p_floodsub as floodsub;
|
|||||||
pub extern crate libp2p_mplex as mplex;
|
pub extern crate libp2p_mplex as mplex;
|
||||||
pub extern crate libp2p_peerstore as peerstore;
|
pub extern crate libp2p_peerstore as peerstore;
|
||||||
pub extern crate libp2p_ping as ping;
|
pub extern crate libp2p_ping as ping;
|
||||||
|
pub extern crate libp2p_ratelimit as ratelimit;
|
||||||
|
pub extern crate libp2p_relay as relay;
|
||||||
//pub extern crate libp2p_secio as secio;
|
//pub extern crate libp2p_secio as secio;
|
||||||
pub extern crate libp2p_tcp_transport as tcp;
|
pub extern crate libp2p_tcp_transport as tcp;
|
||||||
pub extern crate libp2p_websocket as websocket;
|
pub extern crate libp2p_websocket as websocket;
|
||||||
|
Reference in New Issue
Block a user