-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump nim-chornicles, nim-libp2p, nimcrypto
Bump nim-web3, nim-eth and deps - on_chain/group_manager.nim adaption Added status-im/nim-minilru submodule required by latest nim-eth Added nim-quic and nim-ngtcp2 as new deps of nim-libp2p Fixing tests. Changes: modified: .gitmodules modified: tests/waku_discv5/utils.nim modified: tests/waku_enr/utils.nim modified: tests/waku_rln_relay/test_rln_group_manager_onchain.nim modified: tests/waku_rln_relay/utils.nim modified: tests/waku_rln_relay/utils_onchain.nim modified: vendor/nim-chronicles modified: vendor/nim-eth modified: vendor/nim-http-utils modified: vendor/nim-json-rpc modified: vendor/nim-json-serialization modified: vendor/nim-libp2p modified: vendor/nim-metrics new file: vendor/nim-minilru modified: vendor/nim-nat-traversal new file: vendor/nim-ngtcp2 modified: vendor/nim-presto new file: vendor/nim-quic modified: vendor/nim-secp256k1 modified: vendor/nim-serialization modified: vendor/nim-stew modified: vendor/nim-taskpools modified: vendor/nim-testutils modified: vendor/nim-toml-serialization modified: vendor/nim-unicodedb modified: vendor/nim-unittest2 modified: vendor/nim-web3 modified: vendor/nim-websock modified: vendor/nim-zlib modified: vendor/nimcrypto modified: waku.nimble modified: waku/common/enr/builder.nim modified: waku/common/enr/typed_record.nim modified: waku/common/utils/nat.nim modified: waku/discovery/waku_discv5.nim modified: waku/waku_rln_relay/conversion_utils.nim modified: waku/waku_rln_relay/group_manager/on_chain/group_manager.nim modified: waku/waku_rln_relay/rln/wrappers.nim modified: waku/waku_rln_relay/rln_relay.nim
- Loading branch information
1 parent
3ad613c
commit 7f1ea08
Showing
39 changed files
with
142 additions
and
81 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import | ||
std/options, | ||
stew/results, | ||
stew/shims/net, | ||
chronos, | ||
|
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,4 +1,5 @@ | ||
import | ||
std/options, | ||
sequtils, | ||
stew/results, | ||
stew/shims/net, | ||
|
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
Submodule nim-chronicles
updated
4 files
+15 −6 | .github/workflows/ci.yml | |
+7 −0 | README.md | |
+14 −8 | chronicles/log_output.nim | |
+3 −1 | chronicles/options.nim |
Submodule nim-json-rpc
updated
47 files
Submodule nim-json-serialization
updated
3 files
+16 −5 | .github/workflows/ci.yml | |
+3 −5 | json_serialization/reader_impl.nim | |
+6 −2 | json_serialization/writer.nim |
Submodule nim-libp2p
updated
58 files
Submodule nim-minilru
added at
2682cf
Submodule nim-nat-traversal
updated
3 files
+17 −1 | .github/workflows/ci.yml | |
+3 −2 | examples/miniupnpc_test.nim | |
+16 −13 | nat_traversal/miniupnpc.nim |
Submodule nim-ngtcp2
added at
6834f4
Submodule nim-serialization
updated
3 files
+17 −1 | .github/workflows/ci.yml | |
+4 −7 | serialization/object_serialization.nim | |
+5 −5 | serialization/testing/generic_suite.nim |
Submodule nim-stew
updated
12 files
+28 −11 | .github/workflows/ci.yml | |
+2 −2 | stew.nimble | |
+13 −2 | stew/arraybuf.nim | |
+36 −21 | stew/assign2.nim | |
+20 −12 | stew/objects.nim | |
+6 −1 | stew/shims/macros.nim | |
+11 −4 | stew/shims/sets.nim | |
+43 −0 | stew/staticfor.nim | |
+1 −0 | tests/all_tests.nim | |
+22 −0 | tests/test_arraybuf.nim | |
+7 −0 | tests/test_assign2.nim | |
+17 −0 | tests/test_staticfor.nim |
Submodule nim-taskpools
updated
3 files
+32 −9 | .github/workflows/ci.yml | |
+2 −0 | benchmarks/wtime.h | |
+2 −2 | taskpools.nimble |
Submodule nim-toml-serialization
updated
4 files
+27 −5 | .github/workflows/ci.yml | |
+2 −2 | toml_serialization.nimble | |
+4 −5 | toml_serialization/private/array_reader.nim | |
+11 −9 | toml_serialization/reader.nim |
Submodule nim-unicodedb
updated
60 files
Submodule nim-unittest2
updated
4 files
+35 −14 | .github/workflows/ci.yml | |
+2 −2 | .github/workflows/doc.yml | |
+18 −0 | tests/tunittest.nim | |
+26 −20 | unittest2.nim |
Submodule nim-web3
updated
46 files
Submodule nimcrypto
updated
11 files
+1 −1 | nimcrypto.nimble | |
+5 −0 | nimcrypto/blake2.nim | |
+0 −3 | nimcrypto/hash.nim | |
+13 −31 | nimcrypto/hmac.nim | |
+14 −0 | nimcrypto/keccak.nim | |
+5 −0 | nimcrypto/ripemd.nim | |
+1 −1 | nimcrypto/scrypt.nim | |
+5 −0 | nimcrypto/sha.nim | |
+5 −0 | nimcrypto/sha2.nim | |
+2 −0 | nimcrypto/utils.nim | |
+1 −3 | tests/testhmac.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
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
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.