mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
Update submodules (#682)
This commit is contained in:
parent
81939bf289
commit
c3d5701b38
10
.gitmodules
vendored
10
.gitmodules
vendored
@ -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
|
||||
|
||||
2
vendor/nim-chronicles
vendored
2
vendor/nim-chronicles
vendored
@ -1 +1 @@
|
||||
Subproject commit 63ce43a86a40a4c73d1b3b8317278d47ec55a458
|
||||
Subproject commit ba2817f1a9f5ddb59274295f3fe9a54fbf1a5a96
|
||||
2
vendor/nim-chronos
vendored
2
vendor/nim-chronos
vendored
@ -1 +1 @@
|
||||
Subproject commit f7dd6b76c2cbf58a8ed755251086067cb67f420e
|
||||
Subproject commit 14ebf269e9322de5a7f1fa455033b0bcf18144c6
|
||||
2
vendor/nim-eth
vendored
2
vendor/nim-eth
vendored
@ -1 +1 @@
|
||||
Subproject commit a8d11dd30bf0b844e049702353addbbca803845c
|
||||
Subproject commit 20ad6504b7e7869fbf2ce19a7e7a476a80f94cc4
|
||||
2
vendor/nim-http-utils
vendored
2
vendor/nim-http-utils
vendored
@ -1 +1 @@
|
||||
Subproject commit 8b492c74b56c62bcee991a6899d413938a3accc5
|
||||
Subproject commit 9a56559ae3ce7e81b75ae150c1030adf991bf39c
|
||||
2
vendor/nim-json-rpc
vendored
2
vendor/nim-json-rpc
vendored
@ -1 +1 @@
|
||||
Subproject commit 22c342bcc11515c69d59b53819bd38ab813d9b93
|
||||
Subproject commit 318949a4013504f4ec8931f14bc1b5d6e00dee78
|
||||
2
vendor/nim-libp2p
vendored
2
vendor/nim-libp2p
vendored
@ -1 +1 @@
|
||||
Subproject commit bd2e9a04622d4dece2a7e23552050d6c6261f92d
|
||||
Subproject commit c1b2d45d1b562df1af29012e58f33ff8bff597ac
|
||||
2
vendor/nim-metrics
vendored
2
vendor/nim-metrics
vendored
@ -1 +1 @@
|
||||
Subproject commit 7349a421cff02c27df9f7622801459d6b5d65dcd
|
||||
Subproject commit b4c6a51ee75b102a9e36b8b8f2a02760d38219d8
|
||||
2
vendor/nim-stew
vendored
2
vendor/nim-stew
vendored
@ -1 +1 @@
|
||||
Subproject commit 70680e2af2f3b0ead9ea49969731910e0898fbbe
|
||||
Subproject commit 3c91b8694e15137a81ec7db37c6c58194ec94a6a
|
||||
2
vendor/nim-stint
vendored
2
vendor/nim-stint
vendored
@ -1 +1 @@
|
||||
Subproject commit ca897811df3e9aa6106916c30203a442bf3fd8d4
|
||||
Subproject commit 484031fdff38858ee661b0476dad44c13539c60e
|
||||
1
vendor/nim-websock
vendored
Submodule
1
vendor/nim-websock
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit d60df8176d187683cbfd0945b37fc8c885594ac9
|
||||
1
vendor/nim-zlib
vendored
Submodule
1
vendor/nim-zlib
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 6bbc67d09e624d69052d62b2353878f491186942
|
||||
@ -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,
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
{.push raises: [Defect, CatchableError].}
|
||||
|
||||
import
|
||||
chronicles,
|
||||
json_rpc/rpcserver,
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
{.push raises: [Defect].}
|
||||
|
||||
import
|
||||
std/[options,tables],
|
||||
eth/keys,
|
||||
|
||||
@ -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,6 +2,8 @@
|
||||
##
|
||||
## Used by both message store and store protocol.
|
||||
|
||||
{.push raises: [Defect].}
|
||||
|
||||
import nimcrypto/hash
|
||||
|
||||
type
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
# Request utils.
|
||||
|
||||
{.push raises: [Defect].}
|
||||
|
||||
import bearssl, stew/byteutils
|
||||
|
||||
proc generateRequestId*(rng: ref BrHmacDrbgContext): string =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user