2025-04-01 02:46:48 +00:00
|
|
|
version = "0.2.0"
|
|
|
|
|
author = "Mahlon E. Smith"
|
|
|
|
|
description = "Parsing and serialization for the TNetstring format."
|
|
|
|
|
license = "BSD-3-Clause"
|
|
|
|
|
srcDir = "src"
|
|
|
|
|
|
|
|
|
|
requires "nim ^= 2.0.0"
|
|
|
|
|
|
|
|
|
|
task test, "Run the test suite.":
|
|
|
|
|
exec "testament all"
|
|
|
|
|
exec "testament html"
|
|
|
|
|
|
|
|
|
|
task clean, "Remove all non-repository artifacts.":
|
|
|
|
|
exec "fossil clean -x"
|
|
|
|
|
|
|
|
|
|
task docs, "Generate automated documentation.":
|
|
|
|
|
exec "nim doc --project --outdir:docs src/tnetstring.nim"
|
2015-05-20 00:12:19 +00:00
|
|
|
|