-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
26 additions
and
27 deletions.
There are no files selected for viewing
Submodule negentropy
deleted from
1a59da
Submodule nim-chronos
updated
23 files
+11 −8 | chronos.nimble | |
+81 −79 | chronos/apps/http/httpserver.nim | |
+50 −25 | chronos/asyncproc.nim | |
+10 −1 | chronos/config.nim | |
+7 −3 | chronos/internal/asyncfutures.nim | |
+3 −3 | chronos/streams/asyncstream.nim | |
+8 −4 | chronos/threadsync.nim | |
+5 −5 | chronos/transports/common.nim | |
+19 −19 | chronos/transports/datagram.nim | |
+6 −2 | chronos/transports/stream.nim | |
+2 −1 | chronos/unittest2/asynctests.nim | |
+38 −0 | docs/examples/signalling.nim | |
+1 −0 | docs/src/SUMMARY.md | |
+4 −0 | docs/src/examples.md | |
+18 −0 | docs/src/threads.md | |
+9 −13 | tests/testasyncstream.nim | |
+3 −2 | tests/testdatagram.nim | |
+2 −3 | tests/testhttpclient.nim | |
+3 −3 | tests/testhttpserver.nim | |
+31 −28 | tests/testproc.nim | |
+2 −3 | tests/testshttpserver.nim | |
+5 −10 | tests/teststream.nim | |
+20 −5 | tests/testthreadsync.nim |
Submodule nim-confutils
updated
23 files
+4 −8 | .github/workflows/ci.yml | |
+9 −0 | config.nims | |
+25 −3 | confutils.nim | |
+9 −0 | confutils.nimble | |
+12 −1 | confutils/cli_parser.nim | |
+12 −0 | confutils/cli_parsing_fuzzer.nim | |
+25 −9 | confutils/config_file.nim | |
+13 −0 | confutils/defs.nim | |
+28 −9 | confutils/shell_completion.nim | |
+19 −15 | confutils/std/net.nim | |
+13 −0 | confutils/toml/defs.nim | |
+19 −12 | confutils/toml/std/net.nim | |
+14 −2 | confutils/toml/std/uri.nim | |
+17 −3 | confutils/winreg/reader.nim | |
+13 −0 | confutils/winreg/types.nim | |
+21 −2 | confutils/winreg/utils.nim | |
+13 −0 | confutils/winreg/winreg_serialization.nim | |
+13 −0 | confutils/winreg/writer.nim | |
+9 −0 | nim.cfg | |
+0 −0 | tests/private/specialint.nim | |
+3 −15 | tests/test_config_file.nim | |
+0 −4 | tests/test_envvar.nim | |
+1 −1 | tests/test_qualified_ident.nim |
Submodule nim-eth
updated
83 files
Submodule nim-json-serialization
updated
20 files
+3 −3 | .github/workflows/ci.yml | |
+9 −0 | README.md | |
+4 −2 | json_serialization.nimble | |
+6 −2 | json_serialization/format.nim | |
+12 −2 | json_serialization/lexer.nim | |
+44 −6 | json_serialization/parser.nim | |
+7 −4 | json_serialization/reader_impl.nim | |
+4 −9 | json_serialization/std/net.nim | |
+4 −14 | json_serialization/std/options.nim | |
+4 −14 | json_serialization/stew/results.nim | |
+2 −2 | json_serialization/types.nim | |
+41 −26 | json_serialization/writer.nim | |
+3 −2 | tests/test_all.nim | |
+28 −0 | tests/test_json_flavor.nim | |
+12 −1 | tests/test_lexer.nim | |
+75 −0 | tests/test_parser.nim | |
+38 −0 | tests/test_reader.nim | |
+1 −1 | tests/test_serialization.nim | |
+43 −0 | tests/test_valueref.nim | |
+69 −0 | tests/test_writer.nim |
Submodule nim-libbacktrace
updated
3 files
+2 −2 | libbacktrace.nimble | |
+1 −1 | vendor/libbacktrace-upstream | |
+1 −1 | vendor/whereami |
Submodule nim-libp2p
updated
from e3c967 to d08ce1
Submodule nim-metrics
updated
3 files
+3 −3 | .github/workflows/ci.yml | |
+19 −12 | metrics.nim | |
+3 −0 | tests/main_tests.nim |
Submodule nim-nat-traversal
updated
4 files
+1 −1 | .gitmodules | |
+1 −1 | nat_traversal.nimble | |
+1 −1 | vendor/libnatpmp-upstream | |
+1 −1 | vendor/miniupnp |
Submodule nim-presto
updated
21 files
+1 −1 | .github/workflows/ci.yml | |
+2 −0 | presto.nimble | |
+4 −1 | presto/agent.nim | |
+2 −0 | presto/btrees.nim | |
+120 −64 | presto/client.nim | |
+11 −4 | presto/common.nim | |
+3 −0 | presto/macrocommon.nim | |
+33 −0 | presto/middleware.nim | |
+153 −58 | presto/route.nim | |
+12 −8 | presto/secureserver.nim | |
+4 −3 | presto/segpath.nim | |
+12 −8 | presto/server.nim | |
+12 −3 | presto/servercommon.nim | |
+243 −273 | presto/serverprivate.nim | |
+78 −1 | tests/helpers.nim | |
+1 −1 | tests/testall.nim | |
+54 −2 | tests/testclient.nim | |
+120 −0 | tests/testmiddleware.nim | |
+3 −2 | tests/testroute.nim | |
+24 −14 | tests/testsecureserver.nim | |
+48 −114 | tests/testserver.nim |
Submodule nim-results
updated
7 files
+6 −0 | .git-blame-ignore-revs | |
+48 −41 | benchmarks/benchmark.nim | |
+130 −93 | results.nim | |
+2 −0 | results.nimble | |
+231 −78 | tests/test_results.nim | |
+1 −0 | tests/test_results2.nim | |
+0 −23 | to_stew |
Submodule nim-serialization
updated
2 files
+2 −2 | .github/workflows/ci.yml | |
+2 −0 | serialization/object_serialization.nim |
Submodule nim-sqlite3-abi
updated
5 files
+1 −1 | sqlite3_abi.nimble | |
+19,195 −7,131 | sqlite3_abi/sqlite3.c | |
+660 −199 | sqlite3_abi/sqlite3.h | |
+377 −101 | sqlite3_abi/sqlite3_gen.nim | |
+37 −9 | update.sh |
Submodule nim-stew
updated
3 files
+11 −4 | stew/shims/macros.nim | |
+2 −0 | stew/shims/net.nim | |
+1 −1 | tests/ranges/tstackarrays.nim |
Submodule nim-unittest2
updated
4 files
+3 −3 | .github/workflows/ci.yml | |
+2 −2 | .github/workflows/doc.yml | |
+54 −1 | tests/tunittest.nim | |
+23 −27 | unittest2.nim |
Submodule nim-websock
updated
19 files
+16 −14 | .github/workflows/ci.yml | |
+1 −1 | examples/server.nim | |
+1 −1 | tests/extensions/base64ext.nim | |
+1 −1 | tests/extensions/hexext.nim | |
+1 −1 | tests/extensions/testextflow.nim | |
+9 −5 | tests/helpers.nim | |
+2 −3 | tests/testframes.nim | |
+22 −19 | tests/testhooks.nim | |
+3 −1 | tests/testutf8.nim | |
+13 −11 | tests/testwebsockets.nim | |
+1 −1 | websock.nimble | |
+4 −1 | websock/extensions/compression/deflate.nim | |
+1 −1 | websock/frame.nim | |
+7 −2 | websock/http/client.nim | |
+1 −1 | websock/http/common.nim | |
+41 −18 | websock/http/server.nim | |
+19 −8 | websock/session.nim | |
+6 −6 | websock/types.nim | |
+8 −10 | websock/websock.nim |
Submodule nim-zlib
updated
3 files
+1 −1 | .github/workflows/ci.yml | |
+4 −4 | zlib.nimble | |
+1 −1 | zlib/csources |
Submodule nimcrypto
updated
3 files
+1 −1 | .github/workflows/ci.yml | |
+0 −44 | .travis.yml | |
+0 −55 | appveyor.yml |