-
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.
* chore: update submodules * fix: fix peer store test * fix: legacy build requires Nim binary deps
- Loading branch information
Showing
23 changed files
with
25 additions
and
25 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
Submodule nim-chronicles
updated
3 files
+1 −0 | .github/workflows/ci.yml | |
+5 −1 | chronicles.nim | |
+5 −1 | chronicles/options.nim |
Submodule nim-chronos
updated
27 files
+62 −0 | .github/workflows/doc.yml | |
+63 −2 | README.md | |
+5 −5 | chronos/apps/http/httpclient.nim | |
+2 −48 | chronos/apps/http/httpcommon.nim | |
+0 −1 | chronos/apps/http/multipart.nim | |
+1 −1 | chronos/asyncfutures2.nim | |
+273 −216 | chronos/asyncloop.nim | |
+161 −142 | chronos/asyncmacro2.nim | |
+139 −126 | chronos/handles.nim | |
+4 −4 | chronos/ioselects/ioselectors_epoll.nim | |
+1,532 −0 | chronos/osdefs.nim | |
+341 −0 | chronos/osutils.nim | |
+74 −26 | chronos/streams/tlsstream.nim | |
+11 −42 | chronos/timer.nim | |
+31 −67 | chronos/transports/common.nim | |
+190 −216 | chronos/transports/datagram.nim | |
+690 −354 | chronos/transports/ipnet.nim | |
+51 −472 | chronos/transports/osnet.nim | |
+574 −560 | chronos/transports/stream.nim | |
+0 −50 | nimble.lock | |
+108 −0 | tests/testasyncstream.nim | |
+483 −301 | tests/testfut.nim | |
+2 −0 | tests/testhttpclient.nim | |
+18 −0 | tests/testmacro.nim | |
+209 −18 | tests/testnet.nim | |
+13 −11 | tests/testratelimit.nim | |
+4 −5 | tests/teststream.nim |
Submodule nim-confutils
updated
15 files
+13 −5 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+40 −11 | confutils.nim | |
+2 −2 | confutils/cli_parser.nim | |
+7 −3 | confutils/config_file.nim | |
+2 −2 | confutils/std/net.nim | |
+1 −1 | confutils/winreg/reader.nim | |
+81 −3 | nimble.lock | |
+5 −4 | tests/test_config_file.nim | |
+3 −2 | tests/test_envvar.nim | |
+1 −1 | tests/test_ignore.nim | |
+6 −2 | tests/test_parsecmdarg.nim | |
+1 −1 | tests/test_pragma.nim | |
+3 −2 | tests/test_qualified_ident.nim | |
+81 −87 | tests/test_winreg.nim |
Submodule nim-eth
updated
17 files
+2 −2 | .github/workflows/ci.yml | |
+1 −1 | eth.nimble | |
+2 −1 | eth/common/eth_types.nim | |
+38 −0 | eth/common/eth_types_rlp.nim | |
+15 −10 | eth/db/kvstore.nim | |
+22 −21 | eth/db/kvstore_sqlite3.nim | |
+6 −4 | eth/net/nat.nim | |
+6 −10 | eth/net/utils.nim | |
+39 −31 | eth/p2p/discoveryv5/nodes_verification.nim | |
+3 −3 | eth/trie/db.nim | |
+9 −8 | tests/db/test_kvstore.nim | |
+2 −2 | tests/db/test_kvstore_sqlite3.nim | |
+74 −11 | tests/p2p/test_discoveryv5.nim | |
+1 −1 | tests/rlp/test_api_usage.nim | |
+1 −1 | tests/rlp/test_common.nim | |
+9 −9 | tools/dcli.nim | |
+0 −0 | tools/dcli.nim.cfg |
Submodule nim-json-rpc
updated
10 files
+4 −1 | .github/workflows/ci.yml | |
+2 −0 | .gitignore | |
+8 −3 | json_rpc/client.nim | |
+1 −1 | json_rpc/clients/httpclient.nim | |
+1 −0 | json_rpc/errors.nim | |
+2 −1 | json_rpc/jsonmarshal.nim | |
+7 −1 | json_rpc/router.nim | |
+12 −4 | json_rpc/servers/socketserver.nim | |
+38 −46 | nimble.lock | |
+1 −1 | tests/testserverclient.nim |
Submodule nim-libp2p
updated
from 444b83 to 8d5ea4
Submodule nim-metrics
updated
10 files
+20 −14 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+70 −1 | metrics.nim | |
+30 −34 | metrics.nimble | |
+21 −18 | nimble.lock | |
+1 −1 | tests/chronicles_tests.nim | |
+2 −1 | tests/chronos_server_tests.nim | |
+1 −1 | tests/duplicate_coll_mod.nim | |
+7 −4 | tests/main_tests.nim | |
+8 −2 | tests/stdlib_server_tests.nim |
Submodule nim-serialization
updated
7 files
+3 −2 | .github/workflows/ci.yml | |
+3 −0 | .gitignore | |
+20 −32 | nimble.lock | |
+2 −0 | serialization.nim | |
+11 −11 | serialization/object_serialization.nim | |
+2 −1 | tests/test_all.nim | |
+29 −0 | tests/test_reader.nim |
Submodule nim-sqlite3-abi
updated
6 files
+1 −1 | README.md | |
+1 −1 | sqlite3_abi.nimble | |
+25,132 −13,270 | sqlite3_abi/sqlite3.c | |
+762 −105 | sqlite3_abi/sqlite3.h | |
+1,028 −560 | sqlite3_abi/sqlite3_gen.nim | |
+5 −4 | update.sh |
Submodule nim-stew
updated
22 files
+10 −2 | .github/workflows/ci.yml | |
+0 −4 | nimble.lock | |
+93 −46 | stew/byteutils.nim | |
+6 −2 | stew/ctops.nim | |
+1 −1 | stew/interval_set.nim | |
+30 −12 | stew/io2.nim | |
+11 −3 | stew/keyed_queue.nim | |
+6 −1 | stew/keyed_queue/kq_debug.nim | |
+142 −125 | stew/results.nim | |
+0 −55 | stew/shims/parse.nim | |
+127 −0 | stew/shims/parseutils.nim | |
+2 −0 | stew/shims/stddefects.nim | |
+2 −2 | stew/sorted_set.nim | |
+25 −17 | stew/sorted_set/rbtree_verify.nim | |
+1 −0 | tests/all_tests.nim | |
+27 −0 | tests/test_byteutils.nim | |
+11 −6 | tests/test_ctops.nim | |
+36 −1 | tests/test_io2.nim | |
+7 −6 | tests/test_keyed_queue.nim | |
+7 −1 | tests/test_results.nim | |
+13 −0 | tests/test_results2.nim | |
+62 −51 | tests/test_sorted_set.nim |
Submodule nim-stint
updated
3 files
+2 −2 | .github/workflows/ci.yml | |
+5 −2 | stint/private/int_addsub.nim | |
+4 −1 | stint/private/uint_div.nim |
Submodule nim-unittest2
updated
5 files
+16 −6 | .github/workflows/ci.yml | |
+2 −0 | .gitignore | |
+15 −4 | tests/tunittest.nim | |
+73 −17 | unittest2.nim | |
+2 −2 | unittest2.nimble |
Submodule nim-web3
updated
8 files
+1 −1 | tests/all_tests.nim | |
+56 −0 | tests/test_json_marshalling.nim | |
+0 −43 | tests/test_quantity.nim | |
+13 −1 | web3/conversions.nim | |
+5 −0 | web3/engine_api.nim | |
+3 −1 | web3/engine_api_callsigs.nim | |
+27 −11 | web3/engine_api_types.nim | |
+216 −73 | web3/ethtypes.nim |
Submodule nim-websock
updated
3 files
+0 −153 | nimble.lock | |
+4 −4 | websock/extensions/compression/deflate.nim | |
+12 −8 | websock/session.nim |
Submodule nim-zlib
updated
5 files
+3 −2 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+5 −5 | tests/test_codec.nim | |
+5 −5 | zlib/gzip.nim | |
+13 −13 | zlib/zlib_api.nim |
Submodule nimbus-build-system
updated
5 files
+1 −1 | makefiles/targets.mk | |
+1 −1 | scripts/build_nim.sh | |
+11 −2 | scripts/create_nbs_paths.sh | |
+2 −0 | scripts/env.sh | |
+1 −1 | vendor/Nim |