-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (105 loc) · 2.19 KB
/
Copy pathCargo.toml
File metadata and controls
112 lines (105 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[package]
name = "nodejs-polars"
version = "0.26.0"
authors = ["Cory Grinstead"]
documentation = "https://pola-rs.github.io/polars-book/"
edition = "2021"
exclude = ["libpolars.node"]
homepage = "https://github.com/pola-rs/nodejs-polars"
license = "MIT"
repository = "https://github.com/pola-rs/nodejs-polars"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
bincode = { version = "2.0", features = ["serde"] }
napi = { version = "3.12.1", default-features = false, features = [ "napi8", "serde-json" ] }
napi-derive = { version = "3.5.6", default-features = false }
polars-core = { version = "0.55.2", default-features = false }
polars-io = { version = "0.55.2", default-features = false }
polars-lazy = { version = "0.55.2", default-features = false }
polars-ops = { version = "0.55.2", default-features = false }
polars-arrow = { version = "0.55.2", default-features = false }
polars-utils = { version = "0.55.2", default-features = false }
polars-compute = { version = "0.55.2", default-features = false }
thiserror = "2"
serde_json = "1"
either = "1.17.0"
[dependencies.polars]
features = [
"abs",
"arg_where",
"asof_join",
"aws",
"avro",
"azure",
"binary_encoding",
"cloud",
"concat_str",
"cov",
"cross_join",
"cum_agg",
"dataframe_arithmetic",
"decompress",
"diagonal_concat",
"diff",
"dot_diagram",
"dot_product",
"dtype-full",
"dynamic_group_by",
"ewma",
"extract_jsonpath",
"fmt",
"gcp",
"http",
"interpolate",
"ipc",
"ipc_streaming",
"is_first_distinct",
"is_in",
"is_unique",
"json",
"lazy",
"list_eval",
"log",
"mode",
"moment",
"object",
"parquet",
"partition_by",
"pct_change",
"peaks",
"performant",
"pivot",
"product",
"propagate_nans",
"random",
"rank",
"reinterpret",
"repeat_by",
"replace",
"rolling_window",
"row_hash",
"rows",
"round_series",
"semi_anti_join",
"serde-lazy",
"simd",
"sql",
"string_encoding",
"string_pad",
"strings",
"temporal",
"timezones",
"to_dummies",
"unique_counts",
"zip_with"
]
version = "0.55.2"
[build-dependencies]
napi-build = "2.4.1"
[profile.release]
codegen-units = 1
lto = "fat"
[features]
default = ["range"]
range = ["polars-lazy/range"]