[package]
edition = "2024"
rust-version = "1.85.0"
name = "rudb-parse"
version = "0.1.1"
authors = ["tamnd <tamnd87@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The SQL lexer, parser and AST, with a textual form that round trips."
homepage = "https://github.com/tamnd/rudb"
readme = "README.md"
keywords = [
"database",
"olap",
"analytics",
"sql",
"duckdb",
]
categories = [
"database-implementations",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/tamnd/rudb"
[lib]
name = "rudb_parse"
path = "src/lib.rs"
[dependencies.rudb-common]
version = "=0.1.1"
[lints.clippy]
doc_markdown = "allow"
missing_panics_doc = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_debug_implementations = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
unused_qualifications = "warn"