mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-10 08:31:20 +00:00
Move transport upgrade protocols from `protocols/` to `transports/`, such that only "application protocols" that depend on `libp2p-swarm` remain in `protocols/`, whereas there is no such dependency in `transports/` outside of integration tests. Tweak README and top-level CHANGELOG.
9 lines
113 B
Protocol Buffer
9 lines
113 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package structs;
|
|
|
|
message Exchange {
|
|
optional bytes id = 1;
|
|
optional bytes pubkey = 2;
|
|
}
|