remove RLN stuff

This commit is contained in:
fryorcraken 2025-09-22 13:55:29 +10:00
parent 908518882a
commit 95231eba52

View File

@ -9,22 +9,3 @@ bin = @["example"]
# Dependencies
requires "chronos"
proc ensureRln(libFile: string = "build/librln.a", version = "v0.7.0") =
if not fileExists(libFile):
echo "Building RLN library..."
let buildDir = getCurrentDir()
let outFile = libFile
exec "bash ../../scripts/build_rln.sh " & buildDir & " " & version & " " & outFile
else:
echo "RLN library already exists: " & libFile
before build:
echo "Ensure RLN before build"
ensureRln()
before install:
echo "Ensure RLN before install"
ensureRln()