mirror of
https://github.com/logos-storage/nim-circom-compat.git
synced 2026-01-03 14:13:09 +00:00
9 lines
345 B
Nim
9 lines
345 B
Nim
import std/os
|
|
|
|
task genffi, "update the nim ffi bindings":
|
|
exec "cargo install --git https://github.com/arnetheduck/nbindgen#e80a85f1505d78eeae78ce33b6f406603be27d35 nbindgen"
|
|
exec "nbindgen -c ./cbindgen.toml vendor/circom-compat-ffi --output circomcompatffi.nim"
|
|
|
|
task tests, "run unit tests":
|
|
exec "nim c -r tests/testcircomcompat.nim"
|