[dependencies.bitflags]
version = "2"
[dependencies.hex]
version = "0.4.3"
[dependencies.polars-core]
default-features = false
features = ["rows"]
version = "0.50.0"
[dependencies.polars-error]
default-features = false
version = "0.50.0"
[dependencies.polars-lazy]
default-features = false
features = ["abs", "binary_encoding", "concat_str", "cross_join", "cum_agg", "dtype-date", "dtype-decimal", "dtype-struct", "is_in", "list_eval", "log", "meta", "offset_by", "regex", "round_series", "sign", "string_normalize", "string_reverse", "strings", "timezones", "trigonometry", "cov"]
version = "0.50.0"
[dependencies.polars-ops]
default-features = false
version = "0.50.0"
[dependencies.polars-plan]
default-features = false
version = "0.50.0"
[dependencies.polars-time]
default-features = false
version = "0.50.0"
[dependencies.polars-utils]
default-features = false
version = "0.50.0"
[dependencies.rand]
version = "0.9"
[dependencies.regex]
version = "1.9"
[dependencies.serde]
features = ["derive", "rc"]
version = "1.0.188"
[dependencies.sqlparser]
version = "0.53"
[dev-dependencies.polars-core]
default-features = false
features = ["fmt"]
version = "0.50.0"
[features]
binary_encoding = ["polars-lazy/binary_encoding"]
bitwise = ["polars-lazy/bitwise"]
csv = ["polars-lazy/csv"]
default = []
diagonal_concat = ["polars-lazy/diagonal_concat"]
dtype-decimal = ["polars-lazy/dtype-decimal"]
ipc = ["polars-lazy/ipc"]
json = ["polars-lazy/json", "polars-plan/json", "polars-plan/extract_jsonpath"]
list_eval = ["polars-lazy/list_eval"]
nightly = []
parquet = ["polars-lazy/parquet"]
semi_anti_join = ["polars-lazy/semi_anti_join"]
serde = ["polars-utils/serde"]
timezones = ["polars-lazy/timezones"]
[lib]
name = "polars_sql"
path = "src/lib.rs"
[lints.clippy]
collapsible_if = "allow"
[package]
authors = ["Ritchie Vink <ritchie46@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "SQL transpiler for Polars. Converts SQL to Polars logical plans"
edition = "2024"
homepage = "https://www.pola.rs/"
license = "MIT"
name = "polars-sql"
readme = "README.md"
repository = "https://github.com/pola-rs/polars"
resolver = "2"
version = "0.50.0"
[[test]]
name = "empty_table_function"
path = "tests/empty_table_function.rs"
[[test]]
name = "functions_aggregate"
path = "tests/functions_aggregate.rs"
[[test]]
name = "functions_cumulative"
path = "tests/functions_cumulative.rs"
[[test]]
name = "functions_io"
path = "tests/functions_io.rs"
[[test]]
name = "functions_math"
path = "tests/functions_math.rs"
[[test]]
name = "functions_meta"
path = "tests/functions_meta.rs"
[[test]]
name = "functions_string"
path = "tests/functions_string.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "ops_distinct_on"
path = "tests/ops_distinct_on.rs"
[[test]]
name = "simple_exprs"
path = "tests/simple_exprs.rs"
[[test]]
name = "statements"
path = "tests/statements.rs"
[[test]]
name = "udf"
path = "tests/udf.rs"