From 9caca65409ff4816dbee5d74cf3fb13154eb02f1 Mon Sep 17 00:00:00 2001 From: damirka Date: Wed, 18 Aug 2021 18:07:05 +0300 Subject: [PATCH] alphabetical in package/outputs/mod --- package/src/outputs/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/src/outputs/mod.rs b/package/src/outputs/mod.rs index e65058198e..d448130673 100644 --- a/package/src/outputs/mod.rs +++ b/package/src/outputs/mod.rs @@ -14,6 +14,9 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . +pub mod ast_snapshot; +pub use self::ast_snapshot::*; + pub mod circuit; pub use self::circuit::*; @@ -29,8 +32,5 @@ pub use self::proof::*; pub mod proving_key; pub use self::proving_key::*; -pub mod ast_snapshot; -pub use self::ast_snapshot::*; - pub mod verification_key; pub use self::verification_key::*;