syntaqlite-syntax 0.0.3

Internal parser and tokenizer for syntaqlite — not intended for direct use
Documentation

Low-level tokenizer and parser for SQLite SQL.

This crate is split from syntaqlite for internal build reasons — it is not a separate user-facing library. All public types are re-exported by syntaqlite. Depend on syntaqlite directly. If you only need parsing (no formatting or validation), disable the default features and enable just sqlite:

[dependencies]
syntaqlite = { version = "0.0.3", default-features = false, features = ["sqlite"] }