mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 14:28:22 +00:00
21 lines
538 B
TOML
21 lines
538 B
TOML
[package]
|
|
name = "sqlparser"
|
|
description = "Extensible SQL Lexer and Parser with support for ANSI SQL:2011"
|
|
version = "0.1.6-alpha.0"
|
|
authors = ["Andy Grove <andygrove73@gmail.com>"]
|
|
homepage = "https://github.com/andygrove/sqlparser-rs"
|
|
documentation = "https://docs.rs/sqlparser/"
|
|
keywords = [ "ansi", "sql", "lexer", "parser" ]
|
|
repository = "https://github.com/andygrove/sqlparser-rs"
|
|
license = "Apache-2.0"
|
|
include = [
|
|
"src/**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
|
|
[lib]
|
|
name = "sqlparser"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
log = "0.4.5"
|