diff --git a/Cargo.toml b/Cargo.toml index d3b27e9..ad0f822 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "poc-plpgsql-analyzer" authors = ["Christoph Heiss ", "Kieran Kaelin "] -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Proof of concept for tooling to migrate PL/SQL code to PL/pgSQL written in Rust." license-file = "LICENSE" diff --git a/src/lib.rs b/src/lib.rs index c1870ad..43b9fc1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,6 +10,7 @@ pub use analyzer::*; pub use ast::*; pub use parser::*; +pub use source_gen::syntax::*; pub use util::SqlIdent; mod analyzer;