mirror of
https://github.com/logos-storage/circom-witnessgen.git
synced 2026-06-04 06:49:28 +00:00
move the nimble file to the root (apparently nimble requires this for git dependencies??)
This commit is contained in:
parent
9f7cc651a2
commit
ab2c699f8d
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,4 +3,6 @@
|
||||
*.o
|
||||
tmp/
|
||||
build/
|
||||
.ghc.environment.*
|
||||
.ghc.environment.*
|
||||
main
|
||||
testMain
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
author = "Balazs Komuves"
|
||||
description = "Witness generation for circom circuits"
|
||||
license = "MIT OR Apache-2.0"
|
||||
srcDir = "nim"
|
||||
|
||||
bin = @["main"]
|
||||
bin = @["testMain"]
|
||||
|
||||
requires "constantine >= 0.2.0"
|
||||
4
nim/.gitignore
vendored
4
nim/.gitignore
vendored
@ -1,3 +1,5 @@
|
||||
.DS_Store
|
||||
tmp/
|
||||
cli
|
||||
main
|
||||
tmp/
|
||||
testMain
|
||||
|
||||
@ -14,10 +14,10 @@ import circom_witnessgen/export_wtns
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
const graph_file: string = "./tmp/rln_main.graph"
|
||||
const input_file: string = "./tmp/input.json"
|
||||
const partial_file: string = "./tmp/partial.json"
|
||||
const wtns_file: string = "./tmp/output.wtns"
|
||||
const graph_file: string = "./nim/tmp/rln_main.graph"
|
||||
const input_file: string = "./nim/tmp/input.json"
|
||||
const partial_file: string = "./nim/tmp/partial.json"
|
||||
const wtns_file: string = "./nim/tmp/output.wtns"
|
||||
|
||||
const unchanging_inputs: seq[string] = @["secret_key","msg_limit","merkle_root","leaf_idx","merkle_path"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user