# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "sunscreen_bulletproofs" version = "0.8.1" authors = [ "Cathie Yun ", "Henry de Valence ", "Oleg Andreev ", ] description = "A pure-Rust implementation of Bulletproofs using Ristretto" readme = "README.md" keywords = [ "cryptography", "crypto", "ristretto", "zero-knowledge", "bulletproofs", ] categories = ["cryptography"] license = "MIT" repository = "https://github.com/zkcrypto/bulletproofs" resolver = "2" [[test]] name = "range_proof" [[test]] name = "r1cs" required-features = ["yoloproofs"] [[bench]] name = "range_proof" harness = false [[bench]] name = "generators" harness = false [[bench]] name = "r1cs" harness = false required-features = ["yoloproofs"] [[bench]] name = "linear_proof" harness = false [dependencies.byteorder] version = "1" default-features = false [dependencies.clear_on_drop] version = "0.2" default-features = false [dependencies.curve25519-dalek] version = "0.8.0" features = ["serde"] default-features = false package = "sunscreen_curve25519" [dependencies.digest] version = "0.9.0" default-features = false [dependencies.merlin] version = "3" default-features = false [dependencies.rand] version = "0.8" optional = true default-features = false [dependencies.rand_core] version = "0.6" features = ["alloc"] default-features = false [dependencies.serde] version = "1" features = ["alloc"] default-features = false [dependencies.serde_derive] version = "1" default-features = false [dependencies.sha3] version = "0.9.1" default-features = false [dependencies.subtle] version = "2.4" default-features = false package = "subtle-ng" [dependencies.thiserror] version = "1" optional = true [dev-dependencies.bincode] version = "1" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.hex] version = "0.3" [dev-dependencies.rand_chacha] version = "0.3" [features] default = [ "std", "u64_backend", ] docs = ["nightly"] nightly = [ "curve25519-dalek/alloc", "subtle/nightly", "clear_on_drop/nightly", ] std = [ "rand", "rand/std", "rand/std_rng", "thiserror", "curve25519-dalek/alloc", ] u64_backend = ["curve25519-dalek/u64_backend"] yoloproofs = []