cleanup(deps): Remove unused `fpe` dependency and cleanup references (#5541)
* Clean up references to fpe that were not removed when we removed orchard code * Update Cargo.lock Co-authored-by: Deirdre Connolly <durumcrustulum@gmail.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
4a8349fa8a
commit
13cd8b9c2c
|
|
@ -5241,7 +5241,6 @@ dependencies = [
|
||||||
"displaydoc",
|
"displaydoc",
|
||||||
"ed25519-zebra",
|
"ed25519-zebra",
|
||||||
"equihash",
|
"equihash",
|
||||||
"fpe",
|
|
||||||
"futures",
|
"futures",
|
||||||
"group",
|
"group",
|
||||||
"halo2_proofs",
|
"halo2_proofs",
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,6 @@ Click the triangle for details:
|
||||||
| [ripemd](https://github.com/RustCrypto/hashes) | 0.1.3 | no audits, but seems widely used
|
| [ripemd](https://github.com/RustCrypto/hashes) | 0.1.3 | no audits, but seems widely used
|
||||||
| [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1/) | 0.21.3 | no audits, but seems widely used
|
| [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1/) | 0.21.3 | no audits, but seems widely used
|
||||||
| [subtle](https://github.com/dalek-cryptography/subtle) | [2.4.1](https://github.com/dalek-cryptography/subtle/releases/tag/2.4.1) | no audits, but seems widely used
|
| [subtle](https://github.com/dalek-cryptography/subtle) | [2.4.1](https://github.com/dalek-cryptography/subtle/releases/tag/2.4.1) | no audits, but seems widely used
|
||||||
| [fpe](https://github.com/str4d/fpe) | 0.5.1 | I think it's not being used yet
|
|
||||||
| [group](https://github.com/zkcrypto/group) | [0.12.0](https://github.com/zkcrypto/group/releases/tag/0.12.0) | no audits but it's just traits, seems widely used
|
| [group](https://github.com/zkcrypto/group) | [0.12.0](https://github.com/zkcrypto/group/releases/tag/0.12.0) | no audits but it's just traits, seems widely used
|
||||||
| [x25519-dalek](https://github.com/dalek-cryptography/x25519-dalek) | [1.2.0](https://github.com/dalek-cryptography/x25519-dalek/releases/tag/1.2.0) | no audits, but seems widely used
|
| [x25519-dalek](https://github.com/dalek-cryptography/x25519-dalek) | [1.2.0](https://github.com/dalek-cryptography/x25519-dalek/releases/tag/1.2.0) | no audits, but seems widely used
|
||||||
| [jubjub](https://github.com/zkcrypto/jubjub) | [0.9.0](https://github.com/zkcrypto/jubjub/releases/tag/0.9.0) | not sure if were covered by ECC audits. Seem widely used.
|
| [jubjub](https://github.com/zkcrypto/jubjub) | [0.9.0](https://github.com/zkcrypto/jubjub/releases/tag/0.9.0) | not sure if were covered by ECC audits. Seem widely used.
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,6 @@ bls12_381 = "0.7.0"
|
||||||
bs58 = { version = "0.4.0", features = ["check"] }
|
bs58 = { version = "0.4.0", features = ["check"] }
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.3"
|
||||||
equihash = "0.2.0"
|
equihash = "0.2.0"
|
||||||
fpe = "0.5.1"
|
|
||||||
group = "0.12.0"
|
group = "0.12.0"
|
||||||
incrementalmerkletree = "0.3.0"
|
incrementalmerkletree = "0.3.0"
|
||||||
jubjub = "0.9.0"
|
jubjub = "0.9.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue