Skip to content
This repository has been archived by the owner on Aug 23, 2019. It is now read-only.

chore: switch protobufs to protons #19

Merged
merged 1 commit into from
Nov 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The applicability of circuit-relaying is not limited to routing traffic between
- circumventing NAT layers
- route mangling for better privacy (matreshka/shallot dialing).

It's also possible to use it for clients that implement exotic transports such as devices that only have bluetooth radios to be reachable over bluethoot enabled relays and become full p2p nodes.
It's also possible to use it for clients that implement exotic transports such as devices that only have bluetooth radios to be reachable over bluetooth enabled relays and become full p2p nodes.

### libp2p-circuit and IPFS

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"multistream-select": "^0.14.0",
"peer-id": "^0.10.2",
"peer-info": "^0.11.0",
"protocol-buffers": "^3.2.1",
"protons": "^1.0.0",
"pull-abortable": "^4.1.1",
"pull-handshake": "^1.1.4",
"pull-stream": "^3.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/protocol/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict'

const protobuf = require('protocol-buffers')
const protobuf = require('protons')
module.exports = protobuf(require('./proto.js'))