Update submodules (#682)

This commit is contained in:
Hanno Cornelius
2021-07-22 10:43:41 +02:00
committed by GitHub
parent 71a532a414
commit 7be949ed67
22 changed files with 39 additions and 13 deletions
+10
View File
@@ -120,3 +120,13 @@
url = https://github.com/status-im/nim-unittest2.git
ignore = untracked
branch = master
[submodule "vendor/nim-websock"]
path = vendor/nim-websock
url = https://github.com/status-im/nim-websock.git
ignore = untracked
branch = master
[submodule "vendor/nim-zlib"]
path = vendor/nim-zlib
url = https://github.com/status-im/nim-zlib.git
ignore = untracked
branch = master
+1 -1
Vendored Submodule
+1
Submodule vendor/nim-websock added at d60df8176d
Vendored Submodule
+1
Submodule vendor/nim-zlib added at 6bbc67d09e
+1 -1
View File
@@ -4,7 +4,7 @@ import
std/[tables, hashes, sequtils],
chronos, confutils, chronicles, chronicles/topics_registry,
metrics, metrics/chronos_httpserver,
stew/[byteutils, objects],
stew/byteutils,
stew/shims/net as stewNet, json_rpc/rpcserver,
# Waku v1 imports
eth/[keys, p2p], eth/common/utils,
+2
View File
@@ -1,3 +1,5 @@
{.push raises: [Defect, CatchableError].}
import
chronicles,
json_rpc/rpcserver,
+2
View File
@@ -1,3 +1,5 @@
{.push raises: [Defect].}
import
std/[options,tables],
eth/keys,
+2
View File
@@ -1,3 +1,5 @@
{.push raises: [Defect].}
import
std/[options, json],
eth/keys,
@@ -1,7 +1,7 @@
{.push raises: [Defect].}
import
std/[tables, strutils],
std/tables,
sqlite3_abi,
stew/[byteutils, results],
./message_store,
@@ -1,7 +1,7 @@
{.push raises: [Defect].}
import
std/[tables, sequtils, options],
std/[tables, options],
bearssl,
chronos, chronicles, metrics, stew/results,
libp2p/protocols/pubsub/pubsubpeer,
@@ -1,5 +1,7 @@
{.push raises: [Defect].}
import
chronicles, options, chronos, stint,
options, chronos, stint,
web3,
eth/keys
@@ -1,5 +1,7 @@
## Types for waku_store protocol.
{.push raises: [Defect].}
# Group by std, external then internal imports
import
# external imports
+2
View File
@@ -2,6 +2,8 @@
##
## Used by both message store and store protocol.
{.push raises: [Defect].}
import nimcrypto/hash
type
+2
View File
@@ -1,5 +1,7 @@
# Request utils.
{.push raises: [Defect].}
import bearssl, stew/byteutils
proc generateRequestId*(rng: ref BrHmacDrbgContext): string =