mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-05 23:53:09 +00:00
31 lines
615 B
Nim
31 lines
615 B
Nim
# Package
|
|
|
|
version = "0.1.0"
|
|
author = "jazzz"
|
|
description = "An example of the chat sdk in Nim"
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
bin = @["nim_chat_poc"]
|
|
|
|
|
|
# Basic build task
|
|
task initialize, "Initialize the project after cloning":
|
|
exec "./initialize.sh"
|
|
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 2.2.4"
|
|
|
|
requires "protobuf_serialization"
|
|
requires "secp256k1"
|
|
requires "blake2"
|
|
requires "chronicles"
|
|
requires "libp2p"
|
|
requires "nimchacha20poly1305" # TODO: remove
|
|
requires "confutils"
|
|
requires "eth"
|
|
requires "regex"
|
|
requires "web3"
|
|
requires "https://github.com/jazzz/nim-sds#exports"
|