nim-sds/reliability.nimble

16 lines
358 B
Plaintext
Raw Normal View History

2024-10-14 15:05:19 +04:00
# Package
version = "0.1.0"
author = "Waku Team"
description = "E2E Reliability Protocol API"
license = "MIT"
srcDir = "src"
# Dependencies
requires "nim >= 2.0.8"
2024-10-14 15:05:19 +04:00
requires "chronicles"
2024-11-29 14:07:24 +04:00
requires "libp2p"
2024-10-14 15:05:19 +04:00
# Tasks
2024-10-14 15:05:19 +04:00
task test, "Run the test suite":
exec "nim c -r tests/test_bloom.nim"
2024-10-14 15:05:19 +04:00
exec "nim c -r tests/test_reliability.nim"