mirror of
https://github.com/logos-storage/nim-asynciterators.git
synced 2026-01-02 05:23:12 +00:00
17 lines
435 B
Nim
17 lines
435 B
Nim
version = "0.1.0"
|
|
author = "Async Iterators Authors"
|
|
description = "Nim Async iterator helpers for Chronos"
|
|
license = "MIT"
|
|
|
|
requires "questionable >= 0.10.15 & < 0.11.0"
|
|
requires "results"
|
|
requires "chronos"
|
|
|
|
task test, "Runs the test suite":
|
|
withDir "tests/":
|
|
# use nimbledeps dir in the tests
|
|
# witout this, NIMBLE_DIR will point to the parent dir
|
|
delEnv "NIMBLE_DIR"
|
|
exec "nimble setup -l"
|
|
exec "nimble test"
|