[package]
edition = "2021"
name = "spark-ddl-parser"
version = "0.1.0"
authors = ["Odos Matthews <odosmatthews@gmail.com>"]
build = false
exclude = [
"target",
"Cargo.toml.orig",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency PySpark DDL schema parser"
homepage = "https://github.com/eddiethedean/spark-ddl-parser"
readme = "README.md"
keywords = [
"spark",
"pyspark",
"ddl",
"schema",
"parser",
]
categories = [
"data-structures",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/eddiethedean/spark-ddl-parser"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "spark_ddl_parser"
path = "src/lib.rs"
[[test]]
name = "parse_ddl"
path = "tests/parse_ddl.rs"
[[test]]
name = "test_errors"
path = "tests/test_errors.rs"
[[test]]
name = "test_performance"
path = "tests/test_performance.rs"
[[test]]
name = "test_real_world"
path = "tests/test_real_world.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true