-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Updating nim-chronicles, nim-chronos, nim-presto, nimcrypto, n…
…im-libp2p, and nim-nat-transversal (#2043)
- Loading branch information
1 parent
72f9066
commit f617cd9
Showing
11 changed files
with
37 additions
and
35 deletions.
There are no files selected for viewing
Submodule nim-chronicles
updated
10 files
+0 −39 | .appveyor.yml | |
+4 −4 | .github/workflows/ci.yml | |
+0 −26 | .travis.yml | |
+0 −2 | README.md | |
+7 −18 | chronicles.nim | |
+1 −1 | chronicles.nimble | |
+13 −5 | chronicles/log_output.nim | |
+1 −4 | config.nims | |
+0 −118 | nimble.lock | |
+1 −1 | tests/perf/size_check_debug.test |
Submodule nim-chronos
updated
64 files
Submodule nim-libp2p
updated
from 74c402 to 41649f
Submodule nim-nat-traversal
updated
5 files
+3 −3 | .github/workflows/ci.yml | |
+1 −1 | .gitmodules | |
+2 −1 | README.md | |
+1 −1 | nat_traversal.nimble | |
+1 −1 | vendor/miniupnp |
Submodule nim-presto
updated
13 files
+2 −2 | .github/workflows/ci.yml | |
+4 −4 | presto.nimble | |
+206 −55 | presto/client.nim | |
+15 −2 | presto/common.nim | |
+37 −12 | presto/route.nim | |
+2 −2 | presto/secureserver.nim | |
+1 −1 | presto/server.nim | |
+135 −26 | presto/serverprivate.nim | |
+192 −18 | tests/testclient.nim | |
+32 −32 | tests/testroute.nim | |
+24 −34 | tests/testsecureserver.nim | |
+5 −5 | tests/testsegpath.nim | |
+38 −11 | tests/testserver.nim |
Submodule nimcrypto
updated
20 files
+3 −3 | .github/workflows/ci.yml | |
+20 −15 | nimcrypto.nimble | |
+0 −2 | nimcrypto/bcmode.nim | |
+3 −4 | nimcrypto/blake2.nim | |
+0 −3 | nimcrypto/blowfish.nim | |
+45 −6 | nimcrypto/hash.nim | |
+3 −4 | nimcrypto/hmac.nim | |
+3 −4 | nimcrypto/keccak.nim | |
+0 −2 | nimcrypto/rijndael.nim | |
+3 −4 | nimcrypto/ripemd.nim | |
+2 −2 | nimcrypto/scrypt.nim | |
+3 −4 | nimcrypto/sha.nim | |
+3 −4 | nimcrypto/sha2.nim | |
+0 −1 | nimcrypto/sysrand.nim | |
+0 −3 | nimcrypto/twofish.nim | |
+16 −70 | nimcrypto/utils.nim | |
+1 −1 | tests/bootstrap.bat | |
+5 −5 | tests/bootstrap.sh | |
+30 −0 | tests/testapi.nim | |
+19 −1 | tests/testutils.nim |
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ import | |
std/strformat, | ||
stew/results, | ||
chronicles, | ||
uri, | ||
json_serialization, | ||
presto/route | ||
import | ||
|
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