Path: blob/main/py-polars/runtime/polars-runtime-compat/Cargo.toml
7884 views
[package]1name = "polars-runtime-compat"2# example: 1.35.0-beta.13version = "1.36.1"4edition = "2021"56[lib]7name = "_polars_runtime"8crate-type = ["cdylib"]910[dependencies]11libc = { workspace = true }12polars-python = { workspace = true, features = ["allocator", "c_api", "pymethods", "iejoin", "rtcompat"] }13pyo3 = { workspace = true, features = ["abi3-py39", "chrono", "extension-module", "multiple-pymethods"] }1415either = { workspace = true }1617[build-dependencies]18rustflags = { workspace = true }1920[features]21# Features used in this crate22ffi_plugin = ["polars-python/ffi_plugin"]23csv = ["polars-python/csv"]24polars_cloud_client = ["polars-python/polars_cloud_client"]25polars_cloud_server = ["polars-python/polars_cloud_server"]26object = ["polars-python/object"]27clipboard = ["polars-python/clipboard"]28sql = ["polars-python/sql"]29trigonometry = ["polars-python/trigonometry"]30parquet = ["polars-python/parquet"]31ipc = ["polars-python/ipc"]32catalog = ["polars-python/catalog"]3334# Features passed through to the polars-python crate35avro = ["polars-python/avro"]36ipc_streaming = ["polars-python/ipc_streaming"]37is_in = ["polars-python/is_in"]38json = ["polars-python/json"]39sign = ["polars-python/sign"]40asof_join = ["polars-python/asof_join"]41cross_join = ["polars-python/cross_join"]42pct_change = ["polars-python/pct_change"]43repeat_by = ["polars-python/repeat_by"]44# also includes simd45nightly = ["polars-python/nightly"]46meta = ["polars-python/meta"]47search_sorted = ["polars-python/search_sorted"]48decompress = ["polars-python/decompress"]49regex = ["polars-python/regex"]50extract_jsonpath = ["polars-python/extract_jsonpath"]51pivot = ["polars-python/pivot"]52top_k = ["polars-python/top_k"]53propagate_nans = ["polars-python/propagate_nans"]54performant = ["polars-python/performant"]55timezones = ["polars-python/timezones"]56cse = ["polars-python/cse"]57merge_sorted = ["polars-python/merge_sorted"]58list_gather = ["polars-python/list_gather"]59list_filter = ["polars-python/list_filter"]60list_count = ["polars-python/list_count"]61array_count = ["polars-python/array_count"]62binary_encoding = ["polars-python/binary_encoding"]63list_sets = ["polars-python/list_sets"]64list_any_all = ["polars-python/list_any_all"]65array_any_all = ["polars-python/array_any_all"]66list_drop_nulls = ["polars-python/list_drop_nulls"]67list_sample = ["polars-python/list_sample"]68cutqcut = ["polars-python/cutqcut"]69rle = ["polars-python/rle"]70extract_groups = ["polars-python/extract_groups"]71cloud = ["polars-python/cloud"]72peaks = ["polars-python/peaks"]73hist = ["polars-python/hist"]74find_many = ["polars-python/find_many"]75new_streaming = ["polars-python/new_streaming"]7677dtype-i8 = ["polars-python/dtype-i8"]78dtype-i16 = ["polars-python/dtype-i16"]79dtype-u8 = ["polars-python/dtype-u8"]80dtype-u16 = ["polars-python/dtype-u16"]81dtype-array = ["polars-python/dtype-array"]8283dtypes = ["polars-python/dtypes"]8485operations = ["polars-python/operations"]8687io = ["polars-python/io"]8889optimizations = ["polars-python/optimizations"]9091full = [92"ffi_plugin",93"csv",94"polars_cloud_client",95"object",96"clipboard",97"sql",98"trigonometry",99"parquet",100"ipc",101"catalog",102"polars-python/full",103"performant",104]105106default_alloc = ["polars-python/default_alloc"]107default = ["full", "nightly"]108109[lints]110workspace = true111112113