Skip to content

Commit

Permalink
chore: use tag for inter-dep among member crates (#639)
Browse files Browse the repository at this point in the history
* use tag for inter-dep among member crates

* bump jf-signatures to v0.1.1
  • Loading branch information
alxiong authored Jul 25, 2024
1 parent 38e6c3c commit 89b9345
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 30 deletions.
2 changes: 1 addition & 1 deletion aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde = { workspace = true }

[dev-dependencies]
bincode = "1.3"
jf-utils = { path = "../utilities" }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5" }
rand_chacha = { workspace = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions elgamal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ark-serialize = { workspace = true }
ark-std = { workspace = true }
derivative = { workspace = true }
displaydoc = { workspace = true }
jf-relation = { path = "../relation", optional = true, default-features = false }
jf-rescue = { path = "../rescue", default-features = false }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", optional = true, default-features = false }
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
rayon = { version = "1.5.0", optional = true }
zeroize = { version = "1.5", default-features = false }

Expand All @@ -27,7 +27,7 @@ ark-ed-on-bls12-377 = "0.4.0"
ark-ed-on-bls12-381 = "0.4.0"
ark-ed-on-bls12-381-bandersnatch = "0.4.0"
ark-ed-on-bn254 = "0.4.0"
jf-utils = { path = "../utilities" }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5" }

[features]
default = ["parallel"]
Expand Down
6 changes: 3 additions & 3 deletions merkle_tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ digest = { workspace = true }
displaydoc = { workspace = true }
hashbrown = { workspace = true }
itertools = { workspace = true, features = ["use_alloc"] }
jf-relation = { path = "../relation", optional = true, default-features = false }
jf-rescue = { path = "../rescue", default-features = false }
jf-utils = { path = "../utilities", default-features = false }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", optional = true, default-features = false }
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
num-bigint = { workspace = true }
num-traits = { version = "0.2.15", default-features = false }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion pcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ icicle-bn254 = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.5
icicle-core = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.5.1", optional = true }
icicle-cuda-runtime = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.5.1", optional = true }
itertools = { workspace = true, features = ["use_alloc"] }
jf-utils = { path = "../utilities", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
merlin = { workspace = true }
rayon = { version = "1.5.0", optional = true }

Expand Down
10 changes: 5 additions & 5 deletions plonk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ dyn-clone = "^1.0"
espresso-systems-common = { git = "https://github.com/espressosystems/espresso-systems-common", tag = "0.4.0" }
hashbrown = { workspace = true }
itertools = { workspace = true }
jf-crhf = { path = "../crhf", default-features = false }
jf-pcs = { path = "../pcs", default-features = false }
jf-relation = { path = "../relation", default-features = false }
jf-rescue = { path = "../rescue", default-features = false, features = ["gadgets"] }
jf-utils = { path = "../utilities", default-features = false }
jf-crhf = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-pcs = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false, features = ["gadgets"] }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
merlin = { workspace = true }
num-bigint = { workspace = true }
rand_chacha = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion relation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ downcast-rs = { version = "1.2.0", default-features = false }
dyn-clone = "^1.0"
hashbrown = { workspace = true }
itertools = { workspace = true }
jf-utils = { path = "../utilities", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
num-bigint = { workspace = true }
rand_chacha = { workspace = true }
rayon = { version = "1.5.0", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions rescue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ ark-ff = { workspace = true }
ark-std = { workspace = true }
displaydoc = { workspace = true }
itertools = { workspace = true }
jf-commitment = { path = "../commitment", default-features = false }
jf-crhf = { path = "../crhf", default-features = false }
jf-prf = { path = "../prf", default-features = false }
jf-relation = { path = "../relation", optional = true, default-features = false }
jf-utils = { path = "../utilities", default-features = false }
jf-commitment = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-crhf = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-prf = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", optional = true, default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }

[dev-dependencies]
ark-ed-on-bls12-381-bandersnatch = "0.4.0"
Expand Down
6 changes: 6 additions & 0 deletions signature/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.1]((https://github.com/EspressoSystems/jellyfish/compare/0.4.5...jf-signatures-v0.1.1)) (2024-07-25)

### Changed

- [#586](https://github.com/EspressoSystems/jellyfish/pull/586) Omit private keys from logging and debug output.

## 0.1.0

- Initial release. Carved out from `jf-primitives`.
Expand Down
10 changes: 5 additions & 5 deletions signature/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jf-signature"
version = "0.1.0"
version = "0.1.1"
description = "Implementation of signature schemes, including BLS and Schnorr."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -23,10 +23,10 @@ digest = { workspace = true }
displaydoc = { workspace = true }
hashbrown = { workspace = true }
itertools = { workspace = true }
jf-crhf = { path = "../crhf", default-features = false }
jf-relation = { path = "../relation", optional = true, default-features = false }
jf-rescue = { path = "../rescue", default-features = false }
jf-utils = { path = "../utilities", default-features = false }
jf-crhf = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", optional = true, default-features = false }
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
num-bigint = { workspace = true }
num-traits = { version = "0.2.15", default-features = false }
serde = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions vid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ generic-array = { version = "0", features = [
"serde",
] } # not a direct dependency, but we need serde
itertools = { workspace = true, features = ["use_alloc"] }
jf-merkle-tree = { path = "../merkle_tree", default-features = false }
jf-pcs = { path = "../pcs", default-features = false }
jf-utils = { path = "../utilities", default-features = false }
jf-merkle-tree = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-pcs = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
rayon = { version = "1.5.0", optional = true }
serde = { workspace = true }
tagged-base64 = { workspace = true }
Expand All @@ -38,7 +38,7 @@ ark-ed-on-bls12-377 = "0.4.0"
ark-ed-on-bls12-381 = "0.4.0"
ark-ed-on-bn254 = "0.4.0"
criterion = "0.5.1"
jf-pcs = { path = "../pcs", features = ["test-srs"] }
jf-pcs = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", features = ["test-srs"] }
sha2 = "0.10"

[[bench]]
Expand Down
4 changes: 2 additions & 2 deletions vrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ repository = { workspace = true }
ark-std = { workspace = true }
digest = { version = "0.10.1", default-features = false, features = ["alloc"] }
displaydoc = { workspace = true }
jf-signature = { path = "../signature", default-features = false, features = [ "bls" ] }
jf-signature = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false, features = [ "bls" ] }
serde = { workspace = true }
sha2 = { workspace = true }
zeroize = { version = "1.5", default-features = false }

[dev-dependencies]
jf-utils = { path = "../utilities", default-features = false }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }

[features]
default = ["parallel"]
Expand Down

0 comments on commit 89b9345

Please sign in to comment.