Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "poc-plpgsql-analyzer"
authors = ["Christoph Heiss <[email protected]>", "Kieran Kaelin <[email protected]", "Jeremy Sztavinovszki <[email protected]>"]
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"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
pub use analyzer::*;
pub use ast::*;
pub use parser::*;
pub use source_gen::syntax::*;
pub use util::SqlIdent;

mod analyzer;
Expand Down
Loading