diff --git a/Cargo.lock b/Cargo.lock index 798321f4..1b92ee66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5241,7 +5241,6 @@ dependencies = [ "displaydoc", "ed25519-zebra", "equihash", - "fpe", "futures", "group", "halo2_proofs", diff --git a/book/src/dev/zebra-dependencies-for-audit.md b/book/src/dev/zebra-dependencies-for-audit.md index 19a643a2..d653454d 100644 --- a/book/src/dev/zebra-dependencies-for-audit.md +++ b/book/src/dev/zebra-dependencies-for-audit.md @@ -88,7 +88,6 @@ Click the triangle for details: | [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 | [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 | [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. diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 86e7f63a..38b9a3c4 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -25,7 +25,6 @@ bls12_381 = "0.7.0" bs58 = { version = "0.4.0", features = ["check"] } byteorder = "1.4.3" equihash = "0.2.0" -fpe = "0.5.1" group = "0.12.0" incrementalmerkletree = "0.3.0" jubjub = "0.9.0"