Rename the project to nim-ladybug, after kuzu's sudden October abandoning. Picked up by a new party under the new name, lets see where this goes!

No new functionality, just rename and docs updates.
This commit is contained in:
Mahlon E. Smith 2025-11-04 09:06:11 -08:00
parent ee0e8a72c0
commit 76718fa49f
Signed by: mahlon
SSH key fingerprint: SHA256:dP84sRGKZRpOOiPD/+GuOq+SHSxEw9qi5BWLQobaHm0
61 changed files with 3030 additions and 2998 deletions

View file

@ -1,28 +0,0 @@
# vim: set et sta sw=4 ts=4 :
version = "0.6.1"
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=tmp/ src/kuzu.nim"
task test, "Run the test suite.":
exec "testament --megatest:off all"
exec "testament html"
exec """find tests/ -type f \! -name \*.nim -delete"""
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"