11[package ]
22name = " ark-crypto-primitives"
3- version = " 0.1 .0"
3+ version = " 0.2 .0"
44authors = [ " arkworks contributors" ]
5- description = " A library of useful cryptographic primitives that are used "
5+ description = " A library of useful cryptographic primitives"
66homepage = " https://arkworks.rs"
77repository = " https://github.com/arkworks-rs/crypto-primitives"
88documentation = " https://docs.rs/ark-crypto-primitives/"
9- keywords = [ " r1cs" , " pedersen" , " blake2s" , " snark" ]
9+ keywords = [ " r1cs" , " pedersen" , " blake2s" , " snark" , " schnorr " ]
1010categories = [" cryptography" ]
1111include = [" Cargo.toml" , " src" , " README.md" , " LICENSE-APACHE" , " LICENSE-MIT" ]
1212license = " MIT/Apache-2.0"
@@ -15,18 +15,18 @@ edition = "2018"
1515# ################################ Dependencies ################################
1616
1717[dependencies ]
18- ark-ff = { git = " https://github.com/arkworks-rs/algebra " , default-features = false }
19- ark-ec = { git = " https://github.com/arkworks-rs/algebra " , default-features = false }
20- ark-std = { git = " https://github.com/arkworks-rs/utils " , default-features = false }
21- ark-relations = { git = " https://github.com/arkworks-rs/snark " , default-features = false }
18+ ark-ff = { version = " ^0.2.0 " , default-features = false }
19+ ark-ec = { version = " ^0.2.0 " , default-features = false }
20+ ark-std = { version = " ^0.2.0 " , default-features = false }
21+ ark-relations = { version = " ^0.2.0 " , default-features = false }
2222
2323blake2 = { version = " 0.9" , default-features = false }
2424digest = " 0.9"
2525
26- ark-r1cs-std = { git = " https://github.com/arkworks-rs/r1cs-std " , optional = true , default-features = false }
27- ark-snark = { git = " https://github.com/arkworks-rs/snark " , default-features = false }
26+ ark-r1cs-std = { version = " ^0.2.0 " , optional = true , default-features = false }
27+ ark-snark = { version = " ^0.2.0 " , default-features = false }
2828
29- ark-nonnative-field = { git = " https://github.com/arkworks-rs/nonnative " , optional = true , default-features = false }
29+ ark-nonnative-field = { version = " ^0.2.0 " , optional = true , default-features = false }
3030
3131rayon = { version = " 1.0" , optional = true }
3232derivative = { version = " 2.0" , features = [" use_core" ] }
@@ -40,7 +40,7 @@ parallel = [ "std", "rayon", "ark-ec/parallel", "ark-std/parallel", "ark-ff/para
4040r1cs = [ " ark-r1cs-std" , " tracing" , " ark-nonnative-field" ]
4141
4242[dev-dependencies ]
43- ark-ed-on-bls12-381 = { git = " https://github.com/arkworks-rs/curves " , default-features = false , features = [ " r1cs" ] }
44- ark-bls12-377 = { git = " https://github.com/arkworks-rs/curves " , default-features = false , features = [ " curve" , " r1cs" ] }
45- ark-mnt4-298 = { git = " https://github.com/arkworks-rs/curves " , default-features = false , features = [ " curve" , " r1cs" ] }
46- ark-mnt6-298 = { git = " https://github.com/arkworks-rs/curves " , default-features = false , features = [ " r1cs" ] }
43+ ark-ed-on-bls12-381 = { version = " ^0.2.0 " , default-features = false , features = [ " r1cs" ] }
44+ ark-bls12-377 = { version = " ^0.2.0 " , default-features = false , features = [ " curve" , " r1cs" ] }
45+ ark-mnt4-298 = { version = " ^0.2.0 " , default-features = false , features = [ " curve" , " r1cs" ] }
46+ ark-mnt6-298 = { version = " ^0.2.0 " , default-features = false , features = [ " r1cs" ] }
0 commit comments