Use local libs, add tracing

This commit is contained in:
Oskar Thoren 2022-02-23 17:17:38 +08:00
parent d4020bc25b
commit d8e9f55683
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
1 changed files with 7 additions and 2 deletions

View File

@ -21,10 +21,11 @@ ark-std = { version = "0.3.0", default-features = false, features = ["parallel"]
ark-bn254 = { version = "0.3.0" } ark-bn254 = { version = "0.3.0" }
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] } ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] }
# ark-poly = { version = "^0.3.0", default-features = false, features = ["parallel"] } # ark-poly = { version = "^0.3.0", default-features = false, features = ["parallel"] }
ark-relations = { version = "0.3.0", default-features = false } ark-relations = { version = "0.3.0", default-features = false, path = "../../../arkworks-rs/snark/relations", features = [ "std" ] }
ark-serialize = { version = "0.3.0", default-features = false } ark-serialize = { version = "0.3.0", default-features = false }
ark-circom = { git = "https://github.com/gakonst/ark-circom", features = ["circom-2"] } # ark-circom = { git = "https://github.com/gakonst/ark-circom", features = ["circom-2"] }
ark-circom = { features = ["circom-2"], path = "../../../gakonst/ark-circom" }
# error handling # error handling
# thiserror = "1.0.26" # thiserror = "1.0.26"
@ -33,3 +34,7 @@ color-eyre = "0.5"
# decoding of data # decoding of data
# hex = "0.4.3" # hex = "0.4.3"
# byteorder = "1.4.3" # byteorder = "1.4.3"
# tracing
tracing = "0.1"
tracing-subscriber = "0.2"