-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
87 lines (76 loc) · 1.94 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
[package]
name = "daylio-analyze"
version = "0.1.23"
edition = "2021"
authors = ["Kim D. Jeker <git@kije.ch>"]
[[example]]
name = "analyze"
required-features = ["process", "fmt", "csv"]
[features]
default = ["polars_features_minimal", "process"]
process = []
process_activities = ["process","polars/list_sets"]
process_factors = ["process","polars/extract_groups","polars/regex","polars/dtype-struct"]
debug = ["fmt"]
fmt = ["polars/fmt"]
csv = ["polars/csv"]
cse = [
"polars/cse",
# "polars/horizontal_concat" # todo maybe we can elimitate this later, seems to be unintentional that 0.36 requires it with CSE
]
simd = ["polars/simd"]
temporal = ["polars/temporal"]
nightly = ["polars/nightly"]
timezones = ["polars/timezones", "temporal"]
polars_features_base = [
"polars/strings",
"polars/dtype-date",
"polars/dtype-datetime",
"polars/dtype-time",
"polars/dtype-i8",
"polars/dtype-u8",
"polars/dtype-i16",
"polars/lazy",
"polars/dtype-categorical",
"polars/checked_arithmetic",
]
polars_features_minimal = [
"polars_features_base",
"temporal",
"polars/sign",
"polars/is_in",
"polars/diff",
"polars/list_eval",
"polars/regex",
]
polars_features_full = [
"polars_features_minimal",
"cse",
"polars/concat_str",
"polars/performant"
]
[dependencies]
phf = { version = "^0.11", features = ["macros"] }
const-gen = { version = "1.6" }
thiserror = "^1.0"
enum-kinds = "^0.5"
enum_access = { version = "^0.4", git = "https://github.com/kije/enum_access.git" }
[dependencies.polars]
version = "^0.37"
default-features = false
[build-dependencies]
phf = { version = "^0.11", default-features = false }
phf_codegen = "^0.11"
syn = { version = "^2.0", features = ["full"] }
quote = "^1.0"
proc-macro2 = "^1.0"
const-gen = { version = "^1.6.5" }
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[profile.release.package."*"]
opt-level = 3
codegen-units = 1
strip = true