[package]
edition = "2021"
rust-version = "1.94"
name = "sql-dialect-fmt-parser"
version = "1.18.0"
authors = ["sql-dialect-fmt contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Error-resilient, event-based recursive-descent parser building a lossless rowan CST for Snowflake SQL."
homepage = "https://github.com/hjosugi/sql-dialect-fmt"
readme = "README.md"
keywords = [
"snowflake",
"sql",
"formatter",
"parser",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "0BSD"
repository = "https://github.com/hjosugi/sql-dialect-fmt"
[lib]
name = "sql_dialect_fmt_parser"
path = "src/lib.rs"
[[test]]
name = "alter_structure"
path = "tests/alter_structure.rs"
[[test]]
name = "copy_into"
path = "tests/copy_into.rs"
[[test]]
name = "create_structure"
path = "tests/create_structure.rs"
[[test]]
name = "databricks"
path = "tests/databricks.rs"
[[test]]
name = "databricks_delta"
path = "tests/databricks_delta.rs"
[[test]]
name = "databricks_matrix"
path = "tests/databricks_matrix.rs"
[[test]]
name = "ddl"
path = "tests/ddl.rs"
[[test]]
name = "diagnostics"
path = "tests/diagnostics.rs"
[[test]]
name = "dialect"
path = "tests/dialect.rs"
[[test]]
name = "dml"
path = "tests/dml.rs"
[[test]]
name = "easy_cases"
path = "tests/easy_cases.rs"
[[test]]
name = "issues_25_28"
path = "tests/issues_25_28.rs"
[[test]]
name = "lenient_paths"
path = "tests/lenient_paths.rs"
[[test]]
name = "line_endings"
path = "tests/line_endings.rs"
[[test]]
name = "object_ddl"
path = "tests/object_ddl.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "phase2"
path = "tests/phase2.rs"
[[test]]
name = "phase2b"
path = "tests/phase2b.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[test]]
name = "resilience"
path = "tests/resilience.rs"
[[test]]
name = "sample_asof"
path = "tests/sample_asof.rs"
[[test]]
name = "scripting"
path = "tests/scripting.rs"
[[test]]
name = "stage_file_ops"
path = "tests/stage_file_ops.rs"
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[dependencies.rowan]
version = "0.16"
[dependencies.sql-dialect-fmt-lexer]
version = "1.18.0"
[dependencies.sql-dialect-fmt-syntax]
version = "1.18.0"
features = ["rowan"]
[dependencies.sql-dialect-fmt-text]
version = "1.18.0"
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.proptest]
version = "1"