Skip to content

Commit

Permalink
Update master branch to 0.4.0 (#582)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 17, 2023
1 parent 24496c9 commit 7545937
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 41 deletions.
10 changes: 5 additions & 5 deletions bench-templates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-algebra-bench-templates"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A benchmark library for finite fields and elliptic curves"
homepage = "https://arkworks.rs"
Expand All @@ -16,10 +16,10 @@ edition = "2021"

[dependencies]
criterion = { version = "0.4.0", features = [ "html_reports" ] }
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-ec = { version = "0.4.0-alpha", path = "../ec", default-features = false }
ark-ff = { version = "0.4.0-alpha", path = "../ff", default-features = false }
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-ec = { version = "0.4.0", path = "../ec", default-features = false }
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
paste = { version = "1.0" }

[features]
Expand Down
12 changes: 6 additions & 6 deletions ec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-ec"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for elliptic curves and pairings"
homepage = "https://arkworks.rs"
Expand All @@ -14,10 +14,10 @@ edition = "2021"
rust-version = "1.57"

[dependencies]
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false }
ark-ff = { version = "0.4.0-alpha", path = "../ff", default-features = false }
ark-poly = { version = "0.4.0-alpha", path = "../poly", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
ark-poly = { version = "0.4.0", path = "../poly", default-features = false }
derivative = { version = "2", features = ["use_core"] }
num-traits = { version = "0.2", default-features = false }
rayon = { version = "1", optional = true }
Expand All @@ -26,7 +26,7 @@ hashbrown = "0.13.1"
itertools = { version = "0.10", default-features = false }

[dev-dependencies]
ark-test-curves = { version = "0.4.0-alpha", path = "../test-curves", default-features = false, features = ["bls12_381_curve"] }
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = ["bls12_381_curve"] }
sha2 = { version = "0.10", default-features = false }
libtest-mimic = "0.6.0"
serde = "1.0.110"
Expand Down
2 changes: 1 addition & 1 deletion ff-asm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-ff-asm"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for generating x86-64 assembly for finite field multiplication"
homepage = "https://arkworks.rs"
Expand Down
2 changes: 1 addition & 1 deletion ff-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-ff-macros"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for generating x86-64 assembly for finite field multiplication"
homepage = "https://arkworks.rs"
Expand Down
12 changes: 6 additions & 6 deletions ff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-ff"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for finite fields"
homepage = "https://arkworks.rs"
Expand All @@ -14,10 +14,10 @@ edition = "2021"
rust-version = "1.59"

[dependencies]
ark-ff-asm = { version = "0.4.0-alpha", path = "../ff-asm" }
ark-ff-macros = { version = "0.4.0-alpha", path = "../ff-macros" }
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false }
ark-ff-asm = { version = "0.4.0", path = "../ff-asm" }
ark-ff-macros = { version = "0.4.0", path = "../ff-macros" }
ark-std = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
derivative = { version = "2", features = ["use_core"] }
num-traits = { version = "0.2", default-features = false }
paste = "1.0"
Expand All @@ -28,7 +28,7 @@ digest = { version = "0.10", default-features = false, features = ["alloc"] }
itertools = { version = "0.10", default-features = false }

[dev-dependencies]
ark-test-curves = { version = "0.4.0-alpha", path = "../test-curves", default-features = false, features = [ "bls12_381_curve", "mnt6_753", "secp256k1"] }
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = [ "bls12_381_curve", "mnt6_753", "secp256k1"] }
blake2 = { version = "0.10", default-features = false }
sha3 = { version = "0.10", default-features = false }
sha2 = { version = "0.10", default-features = false }
Expand Down
10 changes: 5 additions & 5 deletions poly/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-poly"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for efficient polynomial arithmetic via FFTs over finite fields"
homepage = "https://arkworks.rs"
Expand All @@ -14,9 +14,9 @@ edition = "2021"
rust-version = "1.57"

[dependencies]
ark-ff = { version = "0.4.0-alpha", path = "../ff", default-features = false }
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false, features = ["derive"] }
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false, features = ["derive"] }
ark-std = { version = "0.4.0", default-features = false }
rayon = { version = "1", optional = true }
derivative = { version = "2", default-features = false, features = [ "use_core" ] }
hashbrown = { version = "0.13.1"}
Expand Down Expand Up @@ -49,4 +49,4 @@ harness = false
[[bench]]
name = "sparse_multilinear"
path = "benches/sparse_multilinear.rs"
harness = false
harness = false
2 changes: 1 addition & 1 deletion serialize-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-serialize-derive"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks Contributors" ]
description = "A library for deriving serialization traits for the arkworks ecosystem"
homepage = "https://arkworks.rs"
Expand Down
8 changes: 4 additions & 4 deletions serialize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-serialize"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for serializing types in the arkworks ecosystem"
homepage = "https://arkworks.rs"
Expand All @@ -14,16 +14,16 @@ edition = "2021"
rust-version = "1.56"

[dependencies]
ark-serialize-derive = { version = "0.4.0-alpha", path = "../serialize-derive", optional = true }
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-serialize-derive = { version = "0.4.0", path = "../serialize-derive", optional = true }
ark-std = { version = "0.4.0", default-features = false }
digest = { version = "0.10", default-features = false }
num-bigint = { version = "0.4", default-features = false }

[dev-dependencies]
sha2 = { version = "0.10", default-features = false}
sha3 = { version = "0.10", default-features = false}
blake2 = { version = "0.10", default-features = false}
ark-test-curves = { version = "0.4.0-alpha", path = "../test-curves", default-features = false, features = [ "bls12_381_curve"] }
ark-test-curves = { version = "0.4.0", path = "../test-curves", default-features = false, features = [ "bls12_381_curve"] }


[features]
Expand Down
14 changes: 7 additions & 7 deletions test-curves/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-test-curves"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for testing ark-ec & ark-poly"
homepage = "https://arkworks.rs"
Expand All @@ -14,14 +14,14 @@ edition = "2021"
rust-version = "1.56"

[dependencies]
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-ff = { version = "0.4.0-alpha", path = "../ff", default-features = false }
ark-ec = { version = "0.4.0-alpha", path = "../ec", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
ark-ec = { version = "0.4.0", path = "../ec", default-features = false }

[dev-dependencies]
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false }
ark-algebra-test-templates = { version = "0.4.0-alpha", path = "../test-templates", default-features = false }
ark-algebra-bench-templates = { version = "0.4.0-alpha", path = "../bench-templates", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
ark-algebra-test-templates = { version = "0.4.0", path = "../test-templates", default-features = false }
ark-algebra-bench-templates = { version = "0.4.0", path = "../bench-templates", default-features = false }

[features]
default = []
Expand Down
10 changes: 5 additions & 5 deletions test-templates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-algebra-test-templates"
version = "0.4.0-alpha.6"
version = "0.4.0"
authors = [ "arkworks contributors" ]
description = "A library for tests for finite fields, elliptic curves, and pairings"
homepage = "https://arkworks.rs"
Expand All @@ -14,10 +14,10 @@ edition = "2021"
rust-version = "1.56"

[dependencies]
ark-std = { version = "0.4.0-alpha", default-features = false }
ark-serialize = { version = "0.4.0-alpha", path = "../serialize", default-features = false }
ark-ff = { version = "0.4.0-alpha", path = "../ff", default-features = false }
ark-ec = { version = "0.4.0-alpha", path = "../ec", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", path = "../serialize", default-features = false }
ark-ff = { version = "0.4.0", path = "../ff", default-features = false }
ark-ec = { version = "0.4.0", path = "../ec", default-features = false }
num-bigint = { version = "0.4", default-features = false }
num-integer = { version = "0.1", default-features = false }
num-traits = { version = "0.2", default-features = false }
Expand Down

0 comments on commit 7545937

Please sign in to comment.