-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async Crypto Endeavour #33
Merged
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
192e5b8
refactor: make import and creation async
dignifiedquire 4136f30
revert async for methods that do not need it
dignifiedquire 02aca71
update for the latest libp2p-crypto updates
dignifiedquire 1615516
chore: remove unused .aegir config
dignifiedquire 55bd020
cr round1
dignifiedquire 26815e4
ready for next aegir
dignifiedquire 1145c18
udpate aegir
dignifiedquire 42b4890
latest updates
dignifiedquire 95d014c
update readme
dignifiedquire ea3c382
ready
dignifiedquire 0abb616
chore: update deps
daviddias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ | |
"name": "peer-id", | ||
"version": "0.7.0", | ||
"description": "IPFS Peer Id implementation in Node.js", | ||
"main": "lib/index.js", | ||
"main": "src/index.js", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO change before merge There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
"bin": "src/bin.js", | ||
"jsnext:main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir-lint", | ||
"build": "aegir-build", | ||
|
@@ -27,24 +26,25 @@ | |
"test" | ||
], | ||
"engines": { | ||
"node": "^4.3.0" | ||
"node": ">=4.0.0" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/diasdavid/js-peer-id/issues" | ||
"url": "https://github.com/libp2p/js-peer-id/issues" | ||
}, | ||
"homepage": "https://github.com/diasdavid/js-peer-id", | ||
"homepage": "https://github.com/libp2p/js-peer-id", | ||
"devDependencies": { | ||
"aegir": "^8.0.0", | ||
"aegir": "^9.0.0", | ||
"chai": "^3.5.0", | ||
"pre-commit": "^1.1.3" | ||
}, | ||
"dependencies": { | ||
"async": "^2.0.1", | ||
"libp2p-crypto": "^0.6.1", | ||
"multihashes": "^0.2.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/diasdavid/js-peer-id.git" | ||
"url": "https://github.com/libp2p/js-peer-id.git" | ||
}, | ||
"contributors": [ | ||
"David Dias <[email protected]>", | ||
|
@@ -53,4 +53,4 @@ | |
"dignifiedquire <[email protected]>", | ||
"nginnever <[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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can trim these