From 1fa0bc8ffa2c321624a04af0e67749fdd9757d57 Mon Sep 17 00:00:00 2001 From: howardwu Date: Sun, 7 Jun 2020 22:24:09 -0700 Subject: [PATCH] Restricts ast.rs visibility --- ast/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/src/lib.rs b/ast/src/lib.rs index 65f581ecdf..87150f01fe 100644 --- a/ast/src/lib.rs +++ b/ast/src/lib.rs @@ -9,7 +9,7 @@ pub mod errors; pub use errors::*; pub mod access; -pub mod ast; +mod ast; pub mod circuits; pub mod common; pub mod expressions;