-
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: v0.25 vendor bump and associated fixes (#2352)
- Loading branch information
Showing
9 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
Submodule nim-chronos
updated
17 files
+2 −2 | chronos/apps/http/httpbodyrw.nim | |
+8 −8 | chronos/apps/http/httpclient.nim | |
+235 −94 | chronos/apps/http/httpserver.nim | |
+3 −5 | chronos/asyncsync.nim | |
+12 −0 | chronos/config.nim | |
+19 −0 | chronos/futures.nim | |
+2 −0 | chronos/internal/asyncfutures.nim | |
+43 −30 | chronos/internal/raisesfutures.nim | |
+10 −27 | chronos/streams/asyncstream.nim | |
+2 −2 | chronos/transports/common.nim | |
+13 −30 | chronos/transports/datagram.nim | |
+41 −63 | chronos/transports/stream.nim | |
+130 −0 | docs/examples/middleware.nim | |
+1 −0 | docs/src/SUMMARY.md | |
+1 −0 | docs/src/examples.md | |
+102 −0 | docs/src/http_server_middleware.md | |
+296 −3 | tests/testhttpserver.nim |
Submodule nim-eth
updated
10 files
+40 −32 | eth/db/kvstore_sqlite3.nim | |
+1 −1 | eth/p2p/discoveryv5/protocol.nim | |
+1 −1 | eth/utp/utp_discv5_protocol.nim | |
+2 −1 | eth/utp/utp_protocol.nim | |
+1 −1 | eth/utp/utp_router.nim | |
+2 −4 | eth/utp/utp_socket.nim | |
+5 −5 | tests/utp/test_discv5_protocol.nim | |
+1 −1 | tests/utp/test_protocol.nim | |
+2 −2 | tests/utp/test_utp_router.nim | |
+6 −7 | tests/utp/test_utp_socket.nim |
Submodule nim-json-serialization
updated
6 files
+1 −1 | json_serialization.nimble | |
+2 −1 | json_serialization/std/options.nim | |
+2 −1 | json_serialization/stew/results.nim | |
+18 −1 | json_serialization/writer.nim | |
+2 −1 | tests/test_all.nim | |
+101 −0 | tests/test_writer.nim |
Submodule nim-metrics
updated
12 files
+14 −25 | README.md | |
+830 −742 | metrics.nim | |
+11 −8 | metrics.nimble | |
+28 −29 | metrics/chronicles_support.nim | |
+117 −103 | metrics/chronos_httpserver.nim | |
+5 −4 | metrics/common.nim | |
+219 −0 | metrics/export_backend.nim | |
+0 −58 | metrics/stdlib_httpserver.nim | |
+2 −0 | nim.cfg | |
+1 −9 | tests/chronicles_tests.nim | |
+26 −18 | tests/main_tests.nim | |
+0 −21 | tests/stdlib_server_tests.nim |
Submodule nim-regex
updated
61 files
Submodule nim-toml-serialization
updated
12 files
+25 −33 | .github/workflows/ci.yml | |
+90 −54 | README.md | |
+16 −0 | config.nims | |
+1 −1 | tests/test_features.nim | |
+98 −1 | tests/test_misc.nim | |
+30 −0 | tests/test_parser.nim | |
+21 −18 | tests/test_spec.nim | |
+1 −1 | toml_serialization.nimble | |
+232 −172 | toml_serialization/lexer.nim | |
+61 −136 | toml_serialization/reader.nim | |
+1 −0 | toml_serialization/types.nim | |
+7 −7 | toml_serialization/writer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ import | |
libp2p/multiaddress, | ||
libp2p/peerid, | ||
dnsdisc/client | ||
|
||
import | ||
./waku_core | ||
|
||
|