mirror of
https://github.com/arnaucube/hyperplonk.git
synced 2026-01-11 16:41:28 +01:00
update nix to flake (#101)
* update nix to flake * add nix sanity check cronjob
This commit is contained in:
@@ -2,26 +2,21 @@
|
||||
name = "hyperplonk"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
|
||||
ark-std = { version = "^0.3.0", default-features = false }
|
||||
arithmetic = { path = "../arithmetic" }
|
||||
ark-ec = { version = "^0.3.0", default-features = false }
|
||||
ark-ff = { version = "^0.3.0", default-features = false }
|
||||
ark-poly = { version = "^0.3.0", default-features = false }
|
||||
ark-serialize = { version = "^0.3.0", default-features = false, features = [ "derive" ] }
|
||||
|
||||
ark-std = { version = "^0.3.0", default-features = false }
|
||||
displaydoc = { version = "0.2.3", default-features = false }
|
||||
|
||||
rayon = { version = "1.5.2", default-features = false, optional = true }
|
||||
subroutines = { path = "../subroutines" }
|
||||
transcript = { path = "../transcript" }
|
||||
arithmetic = { path = "../arithmetic" }
|
||||
util = { path = "../util" }
|
||||
|
||||
rayon = { version = "1.5.2", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
ark-bls12-381 = { version = "0.3.0", default-features = false, features = [ "curve" ] }
|
||||
# Benchmarks
|
||||
@@ -34,8 +29,8 @@ harness = false
|
||||
# default = [ ]
|
||||
# default = [ "parallel" ]
|
||||
# default = [ "parallel", "print-trace" ]
|
||||
default = [ "parallel", "extensive_sanity_checks" ]
|
||||
bench = [ "parallel" ]
|
||||
default = ["parallel", "extensive_sanity_checks"]
|
||||
bench = ["parallel"]
|
||||
# extensive sanity checks that are useful for debugging
|
||||
extensive_sanity_checks = [
|
||||
"subroutines/extensive_sanity_checks",
|
||||
@@ -55,4 +50,4 @@ print-trace = [
|
||||
"ark-std/print-trace",
|
||||
"arithmetic/print-trace",
|
||||
"subroutines/print-trace"
|
||||
]
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user