mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-04 07:03:13 +00:00
36 lines
768 B
Nim
36 lines
768 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", "dev"]
|
|
|
|
|
|
# Basic build task
|
|
task initialize, "Initialize the project after cloning":
|
|
exec "./initialize.sh"
|
|
|
|
# # Clean
|
|
# task cleandeps, "Remove and refresh dependencies":
|
|
# rm -rf ~/.nimble/pkgs2/sds-*
|
|
# rm -rf ~/.nimble/pkgcache/githubcom_jazzznimsds*
|
|
|
|
|
|
# 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 "file:///Users/jazzz/dev/nim-sds#dev"
|