Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/docs/source/src/rust/Cargo.toml
6939 views
1
[package]
2
name = "polars-doc-examples"
3
version = { workspace = true }
4
authors = { workspace = true }
5
edition = { workspace = true }
6
homepage = { workspace = true }
7
license = { workspace = true }
8
repository = { workspace = true }
9
description = "Code examples included in the Polars documentation website"
10
11
[dependencies]
12
aws-config = { version = "1" }
13
aws-sdk-s3 = { version = "1" }
14
aws-smithy-checksums = { version = "0.60.10" }
15
chrono = { workspace = true }
16
rand = { workspace = true }
17
reqwest = { workspace = true, features = ["blocking", "default-tls"] }
18
tokio = { workspace = true }
19
20
[dependencies.polars]
21
workspace = true
22
23
[[bin]]
24
name = "home"
25
path = "home/example.rs"
26
required-features = ["polars/lazy", "polars/csv"]
27
28
[[bin]]
29
name = "getting-started"
30
path = "user-guide/getting-started.rs"
31
required-features = ["polars/lazy", "polars/temporal", "polars/round_series", "polars/strings", "polars/is_between"]
32
33
[[bin]]
34
name = "concepts-data-types-and-structures"
35
path = "user-guide/concepts/data-types-and-structures.rs"
36
required-features = ["polars/lazy", "polars/temporal"]
37
38
[[bin]]
39
name = "concepts-expressions"
40
path = "user-guide/concepts/expressions.rs"
41
required-features = ["polars/lazy", "polars/temporal", "polars/is_between"]
42
[[bin]]
43
name = "concepts-lazy-vs-eager"
44
path = "user-guide/concepts/lazy-vs-eager.rs"
45
required-features = ["polars/lazy", "polars/csv"]
46
[[bin]]
47
name = "concepts-streaming"
48
path = "user-guide/concepts/streaming.rs"
49
required-features = ["polars/lazy", "polars/csv", "polars/new_streaming"]
50
51
[[bin]]
52
name = "expressions-aggregation"
53
path = "user-guide/expressions/aggregation.rs"
54
required-features = ["polars/lazy", "polars/csv", "polars/temporal", "polars/dtype-categorical"]
55
[[bin]]
56
name = "expressions-casting"
57
path = "user-guide/expressions/casting.rs"
58
required-features = ["polars/lazy", "polars/temporal", "polars/strings", "polars/dtype-u8"]
59
[[bin]]
60
name = "expressions-column-selections"
61
path = "user-guide/expressions/column-selections.rs"
62
required-features = ["polars/lazy", "polars/temporal", "polars/regex"]
63
[[bin]]
64
name = "expressions-folds"
65
path = "user-guide/expressions/folds.rs"
66
required-features = ["polars/lazy", "polars/strings", "polars/concat_str", "polars/temporal"]
67
[[bin]]
68
name = "expressions-expression-expansion"
69
path = "user-guide/expressions/expression-expansion.rs"
70
required-features = ["polars/lazy", "polars/round_series", "polars/regex"]
71
[[bin]]
72
name = "expressions-lists"
73
path = "user-guide/expressions/lists.rs"
74
required-features = ["polars/lazy"]
75
[[bin]]
76
name = "expressions-missing-data"
77
path = "user-guide/expressions/missing-data.rs"
78
required-features = ["polars/lazy", "polars/interpolate"]
79
[[bin]]
80
name = "expressions-operations"
81
path = "user-guide/expressions/operations.rs"
82
required-features = ["polars/lazy", "polars/approx_unique", "polars/dtype-struct", "polars/unique_counts"]
83
[[bin]]
84
name = "expressions-strings"
85
path = "user-guide/expressions/strings.rs"
86
required-features = ["polars/lazy", "polars/strings", "polars/regex"]
87
[[bin]]
88
name = "expressions-structs"
89
path = "user-guide/expressions/structs.rs"
90
required-features = ["polars/lazy", "polars/dtype-struct", "polars/rank", "polars/strings", "polars/temporal"]
91
[[bin]]
92
name = "expressions-window"
93
path = "user-guide/expressions/window.rs"
94
required-features = ["polars/lazy", "polars/csv", "polars/rank"]
95
96
[[bin]]
97
name = "io-cloud-storage"
98
path = "user-guide/io/cloud-storage.rs"
99
required-features = ["polars/csv"]
100
[[bin]]
101
name = "io-csv"
102
path = "user-guide/io/csv.rs"
103
required-features = ["polars/lazy", "polars/csv"]
104
[[bin]]
105
name = "io-json"
106
path = "user-guide/io/json.rs"
107
required-features = ["polars/lazy", "polars/json"]
108
[[bin]]
109
name = "io-parquet"
110
path = "user-guide/io/parquet.rs"
111
required-features = ["polars/lazy", "polars/parquet"]
112
113
[[bin]]
114
name = "transformations-concatenation"
115
path = "user-guide/transformations/concatenation.rs"
116
required-features = ["polars/lazy", "polars/diagonal_concat"]
117
[[bin]]
118
name = "transformations-joins"
119
path = "user-guide/transformations/joins.rs"
120
required-features = [
121
"polars/lazy",
122
"polars/strings",
123
"polars/semi_anti_join",
124
"polars/iejoin",
125
"polars/cross_join",
126
"polars/temporal",
127
"polars/asof_join",
128
]
129
[[bin]]
130
name = "transformations-unpivot"
131
path = "user-guide/transformations/unpivot.rs"
132
required-features = ["polars/pivot"]
133
[[bin]]
134
name = "transformations-pivot"
135
path = "user-guide/transformations/pivot.rs"
136
required-features = ["polars/lazy", "polars/pivot"]
137
138
[[bin]]
139
name = "transformations-time-series-filter"
140
path = "user-guide/transformations/time-series/filter.rs"
141
required-features = ["polars/lazy", "polars/strings", "polars/temporal"]
142
[[bin]]
143
name = "transformations-time-series-parsing"
144
path = "user-guide/transformations/time-series/parsing.rs"
145
required-features = ["polars/lazy", "polars/strings", "polars/temporal", "polars/timezones"]
146
[[bin]]
147
name = "transformations-time-series-resampling"
148
path = "user-guide/transformations/time-series/resampling.rs"
149
required-features = ["polars/lazy", "polars/temporal", "polars/interpolate"]
150
[[bin]]
151
name = "transformations-time-series-rolling"
152
path = "user-guide/transformations/time-series/rolling.rs"
153
required-features = ["polars/lazy", "polars/temporal", "polars/dynamic_group_by", "polars/cum_agg"]
154
[[bin]]
155
name = "transformations-time-series-timezones"
156
path = "user-guide/transformations/time-series/timezones.rs"
157
required-features = ["polars/lazy", "polars/temporal", "polars/timezones", "polars/strings"]
158
159