oxisqlite-sqlite3-parser 0.2.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 = "oxisqlite-sqlite3-parser"
version = "0.2.0"
authors = ["gwenn"]
build = false
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"
repository = "https://github.com/cool-japan/oxisql"

[badges.maintenance]
status = "experimental"

[features]
NDEBUG = []
YYCOVERAGE = []
YYNOERRORRECOVERY = []
YYTRACKMAXSTACKDEPTH = []
default = [
    "YYNOERRORRECOVERY",
    "NDEBUG",
]
serde = [
    "dep:serde",
    "indexmap/serde",
    "bitflags/serde",
]

[lib]
name = "limbo_sqlite3_parser"
path = "src/lib.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.miette]
version = "7.4.0"

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.strum]
version = "0.26"
features = ["derive"]

[dependencies.strum_macros]
version = "0.26"

[dependencies.uncased]
version = "0.9.10"

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

[lints.rust]
dead_code = "allow"
non_snake_case = "allow"