Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/py-polars/runtime/polars-runtime-32/Cargo.toml
7884 views
1
[package]
2
name = "polars-runtime-32"
3
# example: 1.35.0-beta.1
4
version = "1.36.1"
5
edition = "2021"
6
7
[lib]
8
name = "_polars_runtime"
9
crate-type = ["cdylib"]
10
11
[dependencies]
12
libc = { workspace = true }
13
polars-python = { workspace = true, features = ["allocator", "c_api", "pymethods", "iejoin", "rt32"] }
14
pyo3 = { workspace = true, features = ["abi3-py39", "chrono", "extension-module", "multiple-pymethods"] }
15
16
either = { workspace = true }
17
18
[build-dependencies]
19
rustflags = { workspace = true }
20
21
[features]
22
# Features used in this crate
23
ffi_plugin = ["polars-python/ffi_plugin"]
24
csv = ["polars-python/csv"]
25
polars_cloud_client = ["polars-python/polars_cloud_client"]
26
polars_cloud_server = ["polars-python/polars_cloud_server"]
27
object = ["polars-python/object"]
28
clipboard = ["polars-python/clipboard"]
29
sql = ["polars-python/sql"]
30
trigonometry = ["polars-python/trigonometry"]
31
parquet = ["polars-python/parquet"]
32
ipc = ["polars-python/ipc"]
33
catalog = ["polars-python/catalog"]
34
35
# Features passed through to the polars-python crate
36
avro = ["polars-python/avro"]
37
ipc_streaming = ["polars-python/ipc_streaming"]
38
is_in = ["polars-python/is_in"]
39
json = ["polars-python/json"]
40
sign = ["polars-python/sign"]
41
asof_join = ["polars-python/asof_join"]
42
cross_join = ["polars-python/cross_join"]
43
pct_change = ["polars-python/pct_change"]
44
repeat_by = ["polars-python/repeat_by"]
45
# also includes simd
46
nightly = ["polars-python/nightly"]
47
meta = ["polars-python/meta"]
48
search_sorted = ["polars-python/search_sorted"]
49
decompress = ["polars-python/decompress"]
50
regex = ["polars-python/regex"]
51
extract_jsonpath = ["polars-python/extract_jsonpath"]
52
pivot = ["polars-python/pivot"]
53
top_k = ["polars-python/top_k"]
54
propagate_nans = ["polars-python/propagate_nans"]
55
performant = ["polars-python/performant"]
56
timezones = ["polars-python/timezones"]
57
cse = ["polars-python/cse"]
58
merge_sorted = ["polars-python/merge_sorted"]
59
list_gather = ["polars-python/list_gather"]
60
list_filter = ["polars-python/list_filter"]
61
list_count = ["polars-python/list_count"]
62
array_count = ["polars-python/array_count"]
63
binary_encoding = ["polars-python/binary_encoding"]
64
list_sets = ["polars-python/list_sets"]
65
list_any_all = ["polars-python/list_any_all"]
66
array_any_all = ["polars-python/array_any_all"]
67
list_drop_nulls = ["polars-python/list_drop_nulls"]
68
list_sample = ["polars-python/list_sample"]
69
cutqcut = ["polars-python/cutqcut"]
70
rle = ["polars-python/rle"]
71
extract_groups = ["polars-python/extract_groups"]
72
cloud = ["polars-python/cloud"]
73
peaks = ["polars-python/peaks"]
74
hist = ["polars-python/hist"]
75
find_many = ["polars-python/find_many"]
76
new_streaming = ["polars-python/new_streaming"]
77
78
dtype-i8 = ["polars-python/dtype-i8"]
79
dtype-i16 = ["polars-python/dtype-i16"]
80
dtype-u8 = ["polars-python/dtype-u8"]
81
dtype-u16 = ["polars-python/dtype-u16"]
82
dtype-array = ["polars-python/dtype-array"]
83
84
dtypes = ["polars-python/dtypes"]
85
86
operations = ["polars-python/operations"]
87
88
io = ["polars-python/io"]
89
90
optimizations = ["polars-python/optimizations"]
91
92
full = [
93
"ffi_plugin",
94
"csv",
95
"polars_cloud_client",
96
"object",
97
"clipboard",
98
"sql",
99
"trigonometry",
100
"parquet",
101
"ipc",
102
"catalog",
103
"polars-python/full",
104
"performant",
105
]
106
107
default_alloc = ["polars-python/default_alloc"]
108
default = ["full", "nightly"]
109
110
[lints]
111
workspace = true
112
113