[package] name = "risc0-zkp-verify" version = "0.6.0" edition = "2021" description = "RISC Zero zero-knowledge proof system verify crate" license = "Apache-2.0" homepage = "https://risczero.com/" repository = "https://github.com/risc0/risc0/" links = "risc0-zkp-verify" # The cxx feature enables the C++ implementation of this crate. # The pure feature enables the 'pure' rust implementation of this crate. # Only one of `cxx` or `pure` must be selected. [features] default = ["pure"] cxx = ["dep:cxx", "risc0-zkp-core/cxx"] pure = ["dep:rand"] [dependencies] cfg-if = "1.0" cxx = { version = "1.0", optional = true } rand = { version = "0.8", default-features = false, features = ["small_rng"], optional = true } risc0-zkp-core = { version = "0.6", path = "../core" } [build-dependencies] cxx-build = "1.0"