sqlite3-parser 0.16.0

SQL parser (as understood by SQLite)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "sqlite3-parser"
version = "0.16.0"
authors = ["gwenn"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL parser (as understood by SQLite)"
documentation = "http://docs.rs/sqlite3-parser"
readme = "README.md"
keywords = [
    "sql",
    "parser",
    "scanner",
    "tokenizer",
]
categories = ["parser-implementations"]
license = "Apache-2.0/MIT"
repository = "https://github.com/gwenn/lemon-rs"

[badges.maintenance]
status = "experimental"

[features]
NDEBUG = []
SQLITE_ENABLE_ORDERED_SET_AGGREGATES = []
YYCOVERAGE = []
YYNOERRORRECOVERY = []
YYTRACKMAXSTACKDEPTH = []
default = [
    "YYNOERRORRECOVERY",
    "NDEBUG",
]
extra_checks = []

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

[[example]]
name = "single"
path = "examples/single.rs"

[[example]]
name = "sizes"
path = "examples/sizes.rs"

[[example]]
name = "sql_check"
path = "examples/sql_check.rs"

[[example]]
name = "sql_cmd"
path = "examples/sql_cmd.rs"

[[example]]
name = "sql_cmds"
path = "examples/sql_cmds.rs"

[[example]]
name = "sql_tokens"
path = "examples/sql_tokens.rs"

[[bench]]
name = "keyword"
path = "benches/keyword.rs"

[dependencies.bitflags]
version = "2.0"

[dependencies.fallible-iterator]
version = "0.3"

[dependencies.indexmap]
version = "2.0"

[dependencies.log]
version = "0.4.22"

[dependencies.memchr]
version = "2.0"

[dependencies.phf]
version = "0.13.1"
features = ["uncased"]

[dependencies.uncased]
version = "0.9.10"

[dev-dependencies.env_logger]
version = "0.11"
default-features = false

[build-dependencies.cc]
version = "1.0"

[build-dependencies.phf_codegen]
version = "0.13.1"

[build-dependencies.phf_shared]
version = "0.13.1"
features = ["uncased"]

[build-dependencies.uncased]
version = "0.9.10"

[lints.clippy]
ref_option = "warn"
semicolon_if_nothing_returned = "warn"
unnecessary_semicolon = "warn"
unused_trait_names = "warn"

[profile.dev]
opt-level = 1
debug = 2