Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5 #379

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
[workspace]

members = [
"relations",
"snark",
]

resolver = "2"

[workspace.package]
version = "0.5.1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be "0.5.0"?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had an accidental abort during the release of 0.5 for this crate, and it ended in a weird half-published state on crates.io

authors = [ "arkworks contributors" ]
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/snark"
license = "MIT/Apache-2.0"
edition = "2021"

[workspace.dependencies]
ark-ff = { version = "0.5.0", default-features = false }
ark-std = { version = "0.5.0", default-features = false }
ark-serialize = { version = "0.5.0", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.2", default-features = false }
ark-test-curves = { version = "0.5.0", default-features = false }

[profile.release]
opt-level = 3
lto = "thin"
Expand All @@ -31,9 +46,3 @@ lto = "thin"
incremental = true
debug-assertions = true
debug = true

[patch.crates-io]
ark-ff = { git = "https://github.com/arkworks-rs/algebra/" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra/" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra/" }
22 changes: 11 additions & 11 deletions relations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[package]
name = "ark-relations"
version = "0.4.0"
authors = [ "arkworks contributors" ]
version.workspace = true
authors.workspace = true
description = "A library for rank-one constraint systems"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/snark"
homepage.workspace = true
repository.workspace = true
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"
license.workspace = true
edition.workspace = true

[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, optional = true }
ark-ff.workspace = true
ark-std.workspace = true
tracing.workspace = true
tracing-subscriber = { workspace = true, optional = true }

[dev-dependencies]
ark-test-curves = { version = "0.4.0", default-features = false, features = [ "bls12_381_scalar_field" ] }
ark-test-curves = { workspace = true, features = [ "bls12_381_scalar_field" ] }

[features]
default = []
Expand Down
20 changes: 10 additions & 10 deletions snark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "ark-snark"
version = "0.4.0"
authors = [ "arkworks contributors" ]
version.workspace = true
authors.workspace = true
description = "A library for SNARK traits"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/snark"
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/ark-snark/"
keywords = ["zero-knowledge", "cryptography", "zkSNARK", "SNARK"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
edition = "2021"
license.workspace = true
edition.workspace = true

[dependencies]
ark-ff = { version = "0.4.0", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", default-features = false }
ark-relations = { version = "0.4.0", path = "../relations", default-features = false }
ark-ff.workspace = true
ark-std.workspace = true
ark-serialize.workspace = true
ark-relations = { version = "0.5", path = "../relations", default-features = false }
Loading