Skip to content

Commit bd47c62

Browse files
authored
chore(deps): make jf-rescue optional for jf-signature (#842)
* make rescue optional for signature * changelog
1 parent 108166c commit bd47c62

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

signature/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## Untracked
7+
8+
### Changed
9+
10+
- [#842](https://github.com/EspressoSystems/jellyfish/pull/842): `jf-rescue` is now optional for the crate.
11+
612
## 0.4.0
713

814
### Breaking Changes

signature/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ std = [
2626
"jf-relation/std",
2727
"zeroize/std",
2828
]
29-
schnorr = []
29+
schnorr = ["jf-rescue"]
3030
bls = []
3131
gadgets = ["schnorr", "jf-relation", "jf-rescue/gadgets"]
3232
parallel = ["jf-rescue/parallel", "jf-relation/parallel", "jf-utils/parallel"]
@@ -46,7 +46,7 @@ hashbrown = { workspace = true }
4646
itertools = { workspace = true }
4747
jf-crhf = { git = "https://github.com/EspressoSystems/jellyfish", tag = "jf-crhf-v0.2.0", default-features = false }
4848
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "jf-relation-v0.5.0", optional = true, default-features = false }
49-
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "jf-rescue-v0.3.0", default-features = false }
49+
jf-rescue = { git = "https://github.com/EspressoSystems/jellyfish", tag = "jf-rescue-v0.3.0", optional = true, default-features = false }
5050
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "jf-utils-v0.5.0", default-features = false }
5151
num-bigint = { workspace = true }
5252
num-traits = { version = "0.2.15", default-features = false }

0 commit comments

Comments
 (0)