[package] name = "spartan" version = "0.2.1" authors = ["Srinath Setty "] edition = "2018" description = "High-speed zkSNARKs without trusted setup" documentation = "https://docs.rs/spartan/" readme = "README.md" repository = "https://github.com/microsoft/Spartan" license-file = "LICENSE" keywords = ["zkSNARKs", "cryptography", "proofs"] [dependencies.curve25519-dalek] features = ["serde", "simd_backend"] #version = "3" git = "https://github.com/dalek-cryptography/curve25519-dalek" rev = "a787300ba169ae035bcdf2d540cf2b61b950405c" [dependencies] merlin = "2.0.0" rand = "0.7.3" digest = "0.8.1" sha3 = "0.8.2" byteorder = "1.3.4" rayon = "1.3.0" serde = { version = "1.0.106", features = ["derive"] } bincode = "1.2.1" subtle = { version = "^2.2.3", default-features = false } rand_core = { version = "0.5", default-features = false } zeroize = { version = "1", default-features = false } itertools = "0.9.0" colored = "1.9.3" flate2 = "1.0.14" thiserror = "1.0" [dev-dependencies] criterion = "0.3.1" [lib] name = "libspartan" path = "src/lib.rs" [[bin]] name = "snark" path = "profiler/snark.rs" [[bin]] name = "nizk" path = "profiler/nizk.rs" [[bench]] name = "snark" harness = false [[bench]] name = "nizk" harness = false [features] multicore = [] profile = []