diff --git a/circom_witnessgen.nimble b/circom_witnessgen.nimble index 3026efd..fad87d4 100644 --- a/circom_witnessgen.nimble +++ b/circom_witnessgen.nimble @@ -4,6 +4,9 @@ description = "Witness generation for circom circuits" license = "MIT OR Apache-2.0" srcDir = "nim" -bin = @["testMain"] +installExt = @["nim"] +skipDirs = @["tmp"] + +bin = @["testMain"] requires "constantine >= 0.2.0" \ No newline at end of file diff --git a/nim/circom_witnessgen.nim b/nim/circom_witnessgen.nim index c973054..8fb7d9f 100644 --- a/nim/circom_witnessgen.nim +++ b/nim/circom_witnessgen.nim @@ -1,7 +1,17 @@ +{. warning[UnusedImport]:off .} + +import circom_witnessgen/input_json import circom_witnessgen/graph import circom_witnessgen/semantics +import circom_witnessgen/dependencies +import circom_witnessgen/partial +import circom_witnessgen/load +import circom_witnessgen/export_wtns +export input_json +export load export graph +export export_wtns