spark-ddl-parser 0.1.0

Zero-dependency PySpark DDL schema parser
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 = "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