This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (58 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (58 loc) · 1.4 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
[package]
name = "polars-readstat-rs"
version = "0.3.1"
edition = "2021"
rust-version="1.93"
description = "Pure Rust readers for SAS, Stata, and SPSS with Polars and Arrow outputs"
license = "MIT"
repository = "https://github.com/jrothbaum/polars_readstat_rs"
readme = "README.md"
[dependencies]
polars = { version = "0.53", features = ["lazy", "dtype-datetime", "dtype-date", "dtype-u8", "dtype-u16", "dtype-struct"] }
polars-core = { version = "0.53", default-features = false }
polars-arrow = { version = "0.53"}
byteorder = "1.5"
thiserror = "1.0"
chrono = "0.4"
rayon = "1.8"
num_cpus = "1"
encoding_rs = "0.8"
flate2 = "1.0"
serde_json = "1.0"
[dev-dependencies]
criterion = "0.5"
glob = "0.3"
polars = { version = "0.53", features = ["parquet", "dtype-u8", "dtype-u16"] }
[[bench]]
name = "read_benchmarks"
harness = false
[[bench]]
name = "schema_benchmarks"
harness = false
[[bench]]
name = "stata_read_benchmarks"
harness = false
[[bench]]
name = "stata_schema_benchmarks"
harness = false
[[bench]]
name = "spss_read_benchmarks"
harness = false
[[bench]]
name = "spss_schema_benchmarks"
harness = false
[[bench]]
name = "readstat_stream_benchmarks"
harness = false
[[bench]]
name = "sas_python_stream_benchmarks"
harness = false
[[bench]]
name = "stata_python_stream_benchmarks"
harness = false
[[bench]]
name = "spss_python_stream_benchmarks"
harness = false
[profile.test]
debug = 0
incremental = false