nim-chat-poc/nim_chat_poc.nimble

31 lines
615 B
Plaintext
Raw Normal View History

2025-07-04 22:17:31 -07:00
# Package
version = "0.1.0"
author = "jazzz"
description = "An example of the chat sdk in Nim"
license = "MIT"
srcDir = "src"
2025-09-07 15:40:45 -07:00
bin = @["nim_chat_poc"]
2025-07-04 22:17:31 -07:00
2025-07-22 06:40:08 -07:00
# Basic build task
task initialize, "Initialize the project after cloning":
exec "./initialize.sh"
2025-07-04 22:17:31 -07:00
# Dependencies
requires "nim >= 2.2.4"
2025-09-03 11:24:48 -07:00
requires "protobuf_serialization"
requires "secp256k1"
2025-07-04 22:17:31 -07:00
requires "blake2"
requires "chronicles"
2025-09-03 11:24:48 -07:00
requires "libp2p"
2025-07-04 22:17:31 -07:00
requires "nimchacha20poly1305" # TODO: remove
2025-09-03 11:24:48 -07:00
requires "confutils"
requires "eth"
requires "regex"
requires "web3"
2025-09-07 15:40:45 -07:00
requires "https://github.com/jazzz/nim-sds#exports"