mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-03 22:43:09 +00:00
deploy: c3d5701b3856d38a77477b099c093c1f3e9684d9
This commit is contained in:
parent
7a8cc517b7
commit
833ec778a6
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
|
||||
|
||||
@ -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