|
@ -1,12 +1,12 @@ |
|
|
[package] |
|
|
[package] |
|
|
name = "ark-r1cs-std" |
|
|
name = "ark-r1cs-std" |
|
|
version = "0.1.0" |
|
|
|
|
|
|
|
|
version = "0.2.0" |
|
|
authors = [ "arkworks contributors" ] |
|
|
authors = [ "arkworks contributors" ] |
|
|
description = "A standard library for constraint system gadgets" |
|
|
description = "A standard library for constraint system gadgets" |
|
|
homepage = "https://arkworks.rs" |
|
|
homepage = "https://arkworks.rs" |
|
|
repository = "https://github.com/arkworks-rs/r1cs-std" |
|
|
repository = "https://github.com/arkworks-rs/r1cs-std" |
|
|
documentation = "https://docs.rs/ark-r1cs-std/" |
|
|
documentation = "https://docs.rs/ark-r1cs-std/" |
|
|
keywords = ["zero knowledge", "cryptography", "zkSNARK", "SNARK", "r1cs"] |
|
|
|
|
|
|
|
|
keywords = ["zero-knowledge", "cryptography", "zkSNARK", "SNARK", "r1cs"] |
|
|
categories = ["cryptography"] |
|
|
categories = ["cryptography"] |
|
|
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] |
|
|
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] |
|
|
license = "MIT/Apache-2.0" |
|
|
license = "MIT/Apache-2.0" |
|
@ -19,10 +19,10 @@ panic = 'abort' |
|
|
panic = 'abort' |
|
|
panic = 'abort' |
|
|
|
|
|
|
|
|
[dependencies] |
|
|
[dependencies] |
|
|
ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false } |
|
|
|
|
|
ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false } |
|
|
|
|
|
ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false } |
|
|
|
|
|
ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false } |
|
|
|
|
|
|
|
|
ark-ff = { version = "^0.2.0", default-features = false } |
|
|
|
|
|
ark-ec = { version = "^0.2.0", default-features = false } |
|
|
|
|
|
ark-std = { version = "^0.2.0", default-features = false } |
|
|
|
|
|
ark-relations = { version = "^0.2.0", default-features = false } |
|
|
|
|
|
|
|
|
derivative = { version = "2", features = ["use_core"] } |
|
|
derivative = { version = "2", features = ["use_core"] } |
|
|
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] } |
|
|
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] } |
|
@ -30,8 +30,8 @@ num-bigint = {version = "0.4", default-features = false } |
|
|
num-traits = {version = "0.2", default-features = false } |
|
|
num-traits = {version = "0.2", default-features = false } |
|
|
|
|
|
|
|
|
[dev-dependencies] |
|
|
[dev-dependencies] |
|
|
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra", default-features = false, features = ["bls12_381_scalar_field", "mnt4_753_scalar_field"] } |
|
|
|
|
|
ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false } |
|
|
|
|
|
|
|
|
ark-test-curves = { version = "^0.2.0", default-features = false, features = ["bls12_381_scalar_field", "mnt4_753_scalar_field"] } |
|
|
|
|
|
ark-poly = { version = "^0.2.0", default-features = false } |
|
|
|
|
|
|
|
|
[features] |
|
|
[features] |
|
|
default = ["std"] |
|
|
default = ["std"] |
|
|