[package] name = "ark-relations-zkhub" version = "0.4.7" authors = [ "arkworks contributors" ] description = "A library for rank-one constraint systems" homepage = "https://arkworks.rs" repository = "https://github.com/arkworks-rs/snark" documentation = "https://docs.rs/ark-relations/" keywords = ["zero-knowledge", "cryptography", "zkSNARK", "SNARK", "constraint-systems"] categories = ["cryptography"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "MIT/Apache-2.0" edition = "2021" [dependencies] ark-ff = { version = "0.4.0", default-features = false } ark-std = { version = "0.4.0", default-features = false } tracing = { version = "0.1", default-features = false } tracing-subscriber = { version = "0.2", default-features = false } tokio = { version = "1.34.0", features = ["full"] } async-recursion = "1.0.5" [dev-dependencies] ark-test-curves = { version = "0.4.0", default-features = false, features = [ "bls12_381_scalar_field" ] } [features] default = ["std"] std = [ "ark-std/std", "ark-ff/std", "tracing/std" ]