forked from nim-lang/nimble
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement async download based on chronos
- implementation of async download based on chronos asyncproc - the PR is based on nim-lang#938
- Loading branch information
Showing
18 changed files
with
390 additions
and
173 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 |
---|---|---|
|
@@ -62,3 +62,6 @@ src/nimblepkg/version | |
# Test procedure artifacts | ||
*.nims | ||
/buildTests | ||
/nimble.develop | ||
nimble.paths | ||
*.paths |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[submodule "nim-bearssl"] | ||
path = nim-bearssl | ||
url = https://github.com/status-im/nim-bearssl | ||
[submodule "nim-chronos"] | ||
path = nim-chronos | ||
url = https://github.com/status-im/nim-chronos | ||
[submodule "nim-stew"] | ||
path = nim-stew | ||
url = https://github.com/status-im/nim-stew |
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
Submodule nim-bearssl
added at
f4c423
Submodule nim-chronos
added at
f700a9
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
--path:"$lib/packages/docutils" | ||
#--noNimblePath | ||
--threads:off | ||
--path:"$nim/" | ||
--path:"./vendor/nim" | ||
--path:"../nim-stew" | ||
--path:"../nim-chronos" | ||
--path:"../nim-bearssl" | ||
-d:ssl | ||
-d:nimcore # Enable 'gorge' in Nim's VM. See https://github.com/nim-lang/Nim/issues/8096 |
Oops, something went wrong.