nim-chat-poc/nim_chat_poc.nimble
2025-09-09 13:15:09 -07:00

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"