mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "turso_sqlite3_parser"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["gwenn"]
|
|
description = "SQL parser (as understood by SQLite)"
|
|
documentation = "http://docs.rs/sqlite3-parser"
|
|
repository = "https://github.com/gwenn/lemon-rs"
|
|
readme = "README.md"
|
|
categories = ["parser-implementations"]
|
|
keywords = ["sql", "parser", "scanner", "tokenizer"]
|
|
license = "Apache-2.0/MIT"
|
|
build = "build.rs" # Lemon preprocessing
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
|
|
[features]
|
|
# FIXME: specific to one parser, not global
|
|
YYTRACKMAXSTACKDEPTH = []
|
|
YYNOERRORRECOVERY = []
|
|
YYCOVERAGE = []
|
|
NDEBUG = []
|
|
default = ["YYNOERRORRECOVERY", "NDEBUG"]
|
|
serde = ["dep:serde", "indexmap/serde", "bitflags/serde"]
|
|
|
|
[dependencies]
|
|
log = "0.4.22"
|
|
memchr = "2.0"
|
|
fallible-iterator = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
miette = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = {workspace = true }
|
|
serde = { workspace = true , optional = true, features = ["derive"] }
|
|
smallvec = { version = "1.15.1", features = ["const_generics"] }
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true, default-features = false }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
|
|
[lints.rust]
|
|
dead_code = "allow"
|
|
non_snake_case = "allow"
|