From 0396517a23ea79503f1d3be008ad5ad84b2a2af8 Mon Sep 17 00:00:00 2001 From: romanbrodetskiy Date: Tue, 8 Oct 2024 11:56:09 +0100 Subject: [PATCH 1/3] add to lib.rs --- crates/franklin-crypto/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/franklin-crypto/src/lib.rs b/crates/franklin-crypto/src/lib.rs index ff38ba8..4e8f580 100644 --- a/crates/franklin-crypto/src/lib.rs +++ b/crates/franklin-crypto/src/lib.rs @@ -2,6 +2,7 @@ #![allow(macro_expanded_macro_exports_accessed_by_absolute_paths)] #![warn(unused_assignments)] +extern crate core; pub extern crate bellman; extern crate blake2; extern crate blake2_rfc_bellman_edition as blake2_rfc; @@ -22,6 +23,7 @@ extern crate sha3; extern crate splitmut; extern crate tiny_keccak; + use bellman::pairing; use bellman::pairing::ff; From 7feb614a258f3802afa6eb0c24eb4f0f6c575316 Mon Sep 17 00:00:00 2001 From: Roman Brodetski Date: Tue, 8 Oct 2024 11:57:48 +0100 Subject: [PATCH 2/3] Update lib.rs --- crates/franklin-crypto/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/franklin-crypto/src/lib.rs b/crates/franklin-crypto/src/lib.rs index 4e8f580..c71ee69 100644 --- a/crates/franklin-crypto/src/lib.rs +++ b/crates/franklin-crypto/src/lib.rs @@ -23,7 +23,6 @@ extern crate sha3; extern crate splitmut; extern crate tiny_keccak; - use bellman::pairing; use bellman::pairing::ff; From 1c9deb45b5d16b0e24a509919b77878d0e6b2f26 Mon Sep 17 00:00:00 2001 From: Roman Brodetski Date: Tue, 8 Oct 2024 12:30:03 +0100 Subject: [PATCH 3/3] Update lib.rs --- crates/franklin-crypto/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/franklin-crypto/src/lib.rs b/crates/franklin-crypto/src/lib.rs index c71ee69..018717d 100644 --- a/crates/franklin-crypto/src/lib.rs +++ b/crates/franklin-crypto/src/lib.rs @@ -2,12 +2,12 @@ #![allow(macro_expanded_macro_exports_accessed_by_absolute_paths)] #![warn(unused_assignments)] -extern crate core; pub extern crate bellman; extern crate blake2; extern crate blake2_rfc_bellman_edition as blake2_rfc; pub extern crate boojum; extern crate byteorder; +extern crate core; extern crate derivative; extern crate digest; extern crate indexmap;