[package]
edition = "2024"
name = "pg_parse"
version = "0.13.0"
authors = ["Paul Mason <paul@form1.co.nz>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL parser that uses the actual PostgreSQL server source to parse SQL queries and return the internal PostgreSQL parse tree."
documentation = "https://docs.rs/pg_parse/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/paupino/pg_parse"
[features]
default = []
str = []
[lib]
name = "pg_parse"
path = "src/lib.rs"
[[test]]
name = "fingerprint_tests"
path = "tests/fingerprint_tests.rs"
[[test]]
name = "normalize_tests"
path = "tests/normalize_tests.rs"
[[test]]
name = "parse_plpgsql_tests"
path = "tests/parse_plpgsql_tests.rs"
[[test]]
name = "parse_tests"
path = "tests/parse_tests.rs"
[[test]]
name = "str_tests"
path = "tests/str_tests.rs"
[[test]]
name = "version_numbers"
path = "tests/version_numbers.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.regex]
version = "1.7"
[dev-dependencies.version-sync]
version = "0.9"
[build-dependencies.bindgen]
version = "0.71"
[build-dependencies.heck]
version = "0.5"
[build-dependencies.serde]
version = "1"
features = ["derive"]
[build-dependencies.serde_json]
version = "1"