nim-ladybug/kuzu.nimble
mahlon c46d76ea4a Missed one. Bump for update.
FossilOrigin-Name: 5e67b71c705844396708b26c866ef69b1bf29737e1a72560f0e73033db890e8d
2025-04-02 02:26:34 +00:00

30 lines
906 B
Nim

# vim: set et sta sw=4 ts=4 :
version = "0.2.0"
author = "Mahlon E. Smith"
description = "Kuzu is an embedded graph database built for query speed and scalability."
license = "BSD-3-Clause"
srcDir = "src"
requires "nim ^= 2.0.0"
# Development dependencies.
#requires "futhark ^= 0.15.0"
#requires "zip ^= 0.3.1"
task makewrapper, "Generate the C wrapper using Futhark":
exec "nim c -d:futharkWrap --outdir=. src/kuzu.nim"
task test, "Run the test suite.":
exec "testament --megatest:off all"
exec "testament html"
task clean, "Remove all non-repository artifacts.":
exec "fossil clean -x"
task docs, "Generate automated documentation.":
exec "nim md2html --project --outdir:docs README.md"
exec "nim md2html --project --outdir:docs History.md"
exec "nim md2html --project --outdir:docs USAGE.md"
exec "nim doc --project --outdir:docs src/kuzu.nim"