[package]
edition = "2021"
rust-version = "1.82.0"
name = "palimpsest-sql"
version = "0.1.0"
authors = ["colton@thousandbirds.ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL parsing, validation, and MIR definitions for Palimpsest."
homepage = "https://github.com/thousandbirds/palimpsest"
readme = false
keywords = [
"postgres",
"wal",
"sync",
"dataflow",
"grpc",
]
categories = [
"database",
"network-programming",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thousandbirds/palimpsest"
[lib]
name = "palimpsest_sql"
path = "src/lib.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[[bench]]
name = "parse_and_lower"
path = "benches/parse_and_lower.rs"
harness = false
[dependencies.petgraph]
version = "0.7"
[dependencies.sqlparser]
version = "0.52"
features = ["visitor"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = [
"plotters",
"cargo_bench_support",
]
default-features = false
[dev-dependencies.insta]
version = "1.40"
[dev-dependencies.proptest]
version = "1.5"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1