sqlt 0.3.2

SQL parser, translator, and linter for MySQL, MariaDB, Postgres, MSSQL, SQLite
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "sqlt"
version = "0.3.2"
authors = ["codedeviate <codedv8@gmail.com>"]
build = false
exclude = [
    ".claude/**",
    ".git/**",
    ".github/**",
    ".idea/**",
    "target/**",
    "/.gitignore",
    "OUT-OF-SCOPE.md",
    "CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL parser, translator, and linter for MySQL, MariaDB, Postgres, MSSQL, SQLite"
homepage = "https://github.com/codedeviate/sqlt"
documentation = "https://docs.rs/sqlt"
readme = "README.md"
keywords = [
    "sql",
    "parser",
    "translator",
    "dialect",
    "lint",
]
categories = [
    "command-line-utilities",
    "database",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/codedeviate/sqlt"

[lib]
name = "sqlt"
path = "src/lib.rs"

[[bin]]
name = "sqlt"
path = "src/main.rs"

[[test]]
name = "cli"
path = "tests/cli.rs"

[[test]]
name = "lint"
path = "tests/lint.rs"

[[test]]
name = "parse_fixtures"
path = "tests/parse_fixtures.rs"

[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"

[[test]]
name = "translate"
path = "tests/translate.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.encoding_rs]
version = "0.8"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sqlparser]
version = "0.59"
features = [
    "serde",
    "visitor",
]

[dependencies.thiserror]
version = "2"

[dev-dependencies.insta]
version = "1"

[profile.release]
lto = true
codegen-units = 1
strip = "symbols"