sql_query_parser 0.1.0

The sql_query_parser project provides a custom Rust parser for SQL-like queries, implemented using the Pest crate. It can parse SELECT statements with advanced query capabilities, including joins, conditional filtering, aggregate functions, grouping, ordering, and limiting the results.
Documentation
[[bin]]
name = "sql_query_parser"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.93"

[dependencies.pest]
version = "2.7.14"

[dependencies.pest_derive]
version = "2.7.14"

[dependencies.thiserror]
version = "2.0.3"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "The sql_query_parser project provides a custom Rust parser for SQL-like queries, implemented using the Pest crate. It can parse SELECT statements with advanced query capabilities, including joins, conditional filtering, aggregate functions, grouping, ordering, and limiting the results."
edition = "2021"
license = "MIT"
name = "sql_query_parser"
readme = "README.md"
version = "0.1.0"

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