Skip to content

Commit 7ccb2b9

Browse files
authored
Release v0.2.0 PR (#33)
1 parent 4ec8e33 commit 7ccb2b9

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "ark-crypto-primitives"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = [ "arkworks contributors" ]
5-
description = "A library of useful cryptographic primitives that are used"
5+
description = "A library of useful cryptographic primitives"
66
homepage = "https://arkworks.rs"
77
repository = "https://github.com/arkworks-rs/crypto-primitives"
88
documentation = "https://docs.rs/ark-crypto-primitives/"
9-
keywords = [ "r1cs", "pedersen", "blake2s", "snark" ]
9+
keywords = [ "r1cs", "pedersen", "blake2s", "snark", "schnorr" ]
1010
categories = ["cryptography"]
1111
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
1212
license = "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

2323
blake2 = { version = "0.9", default-features = false }
2424
digest = "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

3131
rayon = { version = "1.0", optional = true }
3232
derivative = { version = "2.0", features = ["use_core"] }
@@ -40,7 +40,7 @@ parallel = [ "std", "rayon", "ark-ec/parallel", "ark-std/parallel", "ark-ff/para
4040
r1cs = [ "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

Comments
 (0)