forked from pola-rs/nodejs-polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
102 lines (95 loc) · 1.9 KB
/
Cargo.toml
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
[package]
name = "nodejs-polars"
version = "0.7.3"
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]
ahash = "0.7"
bincode = "1.3"
napi = {version = "2.10.9", default-features = false, features = ["napi8", "serde-json", "experimental"]}
napi-derive = {version = "2.9.4", default-features = false}
polars-core = {git = "https://github.com/pola-rs/polars.git", rev = "43598c3e21a2b6c1246a565005045ef553e4f688", default-features = false}
thiserror = "1.0.20"
serde_json = {version = "1"}
[dependencies.polars]
features = [
"rolling_window",
"json",
"dynamic_groupby",
"zip_with",
"simd",
"lazy",
"strings",
"temporal",
"random",
"object",
"csv-file",
"fmt",
"performant",
"dtype-full",
"rows",
"private",
"round_series",
"is_in",
"is_first",
"asof_join",
"cross_join",
"dot_product",
"concat_str",
"row_hash",
"reinterpret",
"decompress-fast",
"mode",
"extract_jsonpath",
"lazy_regex",
"cum_agg",
"rolling_window",
"repeat_by",
"interpolate",
"ewma",
"rank",
"propagate_nans",
"diff",
"pct_change",
"moment",
"arange",
"true_div",
"dtype-categorical",
"string_justify",
"diagonal_concat",
"horizontal_concat",
"abs",
"dot_diagram",
"dataframe_arithmetic",
"json",
"string_encoding",
"product",
"ndarray",
"unique_counts",
"log",
"serde-lazy",
"partition_by",
"pivot",
"semi_anti_join",
"parquet",
"to_dummies",
"ipc",
"avro",
"list_eval",
"arg_where",
]
git = "https://github.com/pola-rs/polars.git"
rev = "43598c3e21a2b6c1246a565005045ef553e4f688"
[build-dependencies]
napi-build = "2.0.1"
[profile.release]
codegen-units = 1
lto = "fat"
[workspace]