I've been rebuilding some internal tools and open source projects in Rust and have a few things to share:
tree-sitter-postgres — A Tree-sitter grammar for Postgres (SQL + PL/pgSQL) that uses codegen to convert directly from Postgres' Bison source into a Tree-sitter grammar.
libpgfmt — A Rust library for formatting SQL and PL/pgSQL, with support for multiple style presets: aweber, dbt, gitlab, kickstarter, mozilla, mattmc3, and river.
pgfmt — A CLI tool for formatting and lint-checking SQL and PL/pgSQL, built on libpgfmt.
libpgdump — A Rust library for reading and writing PostgreSQL dump files that supports custom, directory, and tar formats. This is a port of my pgdumplib project and will be used in the next version of pgdumplib.
There are several tree-sitter projects for Postgres including both SQL and PL/PgSQL. What I believe differentiates tree-sitter-postgres from the others is that it is entirely driven by code generation from the Postgres source. When a new major version drops that may add new keywords or other changes, it should be very easy to keep the grammar up to date.
libpgfmt and pgfmt were primarily built to support the AWeber style guide which derives from sqlstyle.guide, but was built to support multiple styles.