From 106d7205a67def1d1166582641195309b897d169 Mon Sep 17 00:00:00 2001 From: kierankaelin Date: Thu, 23 Oct 2025 11:10:46 +0200 Subject: [PATCH] feat: export source_gen syntax structs --- Cargo.toml | 2 +- src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d3b27e98..ad0f8229 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 c1870ad7..43b9fc18 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;