syntaqlite-cli 0.0.21

Fast, accurate SQLite SQL formatter, validator, and language server — built on SQLite's own grammar
1
2
3
4
5
6
7
8
9
// Copyright 2025 The syntaqlite Authors. All rights reserved.
// Licensed under the Apache License, Version 2.0.

//! `syntaqlite` command-line interface.

fn main() {
    #[cfg(feature = "builtin-sqlite")]
    syntaqlite_cli::run("syntaqlite", Some(syntaqlite::sqlite_dialect().into()));
}