-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: replace node buffers with uint8arrays (#42)
* fix: replace node buffers with uint8arrays BREAKING CHANGES: - All deps of this module now use uint8arrays in place of node buffers - DHT keys/values are Uint8Arrays, not Strings or Buffers * chore: bump daemon dep Co-authored-by: Jacob Heun <[email protected]>
- Loading branch information
1 parent
97b61a5
commit 33be887
Showing
8 changed files
with
65 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"aegir": "^24.0.0", | ||
"aegir": "^26.0.0", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"chai-bytes": "~0.1.2", | ||
|
@@ -44,17 +44,18 @@ | |
"it-pushable": "^1.4.0", | ||
"mocha": "^8.0.1", | ||
"sinon": "^9.0.0", | ||
"streaming-iterables": "^5.0.2" | ||
"streaming-iterables": "^5.0.2", | ||
"uint8arrays": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"cids": "~0.8.0", | ||
"cids": "^1.0.0", | ||
"err-code": "^2.0.0", | ||
"it-handshake": "^1.0.1", | ||
"it-length-prefixed": "^3.0.0", | ||
"libp2p-daemon": "^0.4.0", | ||
"libp2p-tcp": "^0.14.2", | ||
"multiaddr": "^7.2.1", | ||
"peer-id": "~0.13.3" | ||
"libp2p-daemon": "^0.5.0", | ||
"libp2p-tcp": "^0.15.1", | ||
"multiaddr": "^8.0.0", | ||
"peer-id": "^0.14.0" | ||
}, | ||
"contributors": [ | ||
"Vasco Santos <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.