[package]
edition = "2021"
name = "robin-sparkless"
version = "0.9.2"
authors = ["Robin Sparkless contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PySpark-like DataFrame API in Rust on Polars; no JVM."
readme = "README.md"
keywords = [
"pyspark",
"polars",
"dataframe",
"spark",
"etl",
]
categories = [
"data-structures",
"development-tools",
]
license = "MIT"
repository = "https://github.com/eddiethedean/robin-sparkless"
[features]
default = []
delta = [
"dep:deltalake",
"dep:tokio",
]
pyo3 = ["dep:pyo3"]
sql = ["dep:sqlparser"]
[lib]
name = "robin_sparkless"
crate-type = ["rlib"]
path = "src/lib.rs"
[[example]]
name = "complex_filters"
path = "examples/complex_filters.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "quickstart_from_polars"
path = "examples/quickstart_from_polars.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "issue_235_filter_coercion"
path = "tests/issue_235_filter_coercion.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[bench]]
name = "filter_select_groupby"
path = "benches/filter_select_groupby.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1.11.1"
[dependencies.chrono]
version = "0.4"
[dependencies.chrono-tz]
version = "0.9"
[dependencies.crc32fast]
version = "1.4"
[dependencies.deltalake]
version = "0.30"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.murmur3]
version = "0.5"
[dependencies.percent-encoding]
version = "2"
[dependencies.polars]
version = "0.45"
features = [
"lazy",
"csv",
"parquet",
"json",
"temporal",
"strings",
"concat_str",
"regex",
"round_series",
"abs",
"dtype-categorical",
"dtype-date",
"dtype-datetime",
"dtype-duration",
"dtype-time",
"rank",
"is_in",
"list_eval",
"list_drop_nulls",
"list_any_all",
"cum_agg",
"string_pad",
"string_reverse",
"repeat_by",
"log",
"month_end",
"describe",
"cross_join",
"semi_anti_join",
"extract_jsonpath",
"dtype-struct",
"random",
"product",
"moment",
]
[dependencies.polars-plan]
version = "0.45"
[dependencies.pyo3]
version = "0.24"
features = [
"abi3-py38",
"extension-module",
]
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.soundex]
version = "0.2"
[dependencies.sqlparser]
version = "0.45"
optional = true
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"fs",
"io-util",
]
optional = true
[dependencies.twox-hash]
version = "1.6"
[dependencies.url]
version = "2"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.polars]
version = "0.45"
features = [
"lazy",
"csv",
"parquet",
"json",
"temporal",
"strings",
"concat_str",
"regex",
"round_series",
"abs",
"dtype-categorical",
"dtype-date",
"dtype-datetime",
"dtype-duration",
"dtype-time",
"test",
"rank",
"is_in",
"list_eval",
"list_drop_nulls",
"list_any_all",
"cum_agg",
"string_pad",
"string_reverse",
"repeat_by",
"log",
"month_end",
"describe",
"cross_join",
"semi_anti_join",
"extract_jsonpath",
"dtype-struct",
"product",
"moment",
]
[dev-dependencies.tempfile]
version = "3"