work on value labels
[pspp] / rust / Cargo.toml
1 [package]
2 name = "pspp"
3 version = "1.0.0"
4 edition = "2021"
5 authors = [ "Ben Pfaff", "John Darrington" ]
6
7 [dependencies]
8 anyhow = "1.0.69"
9 clap = { version = "4.1.7", features = ["derive", "wrap_help"] }
10 encoding_rs = "0.8.32"
11 flate2 = "1.0.26"
12 float_next_after = "1.0.0"
13 hexplay = "0.2.1"
14 lazy_static = "1.4.0"
15 num = "0.4.0"
16 num-derive = "0.4.0"
17 num-traits = "0.2.16"
18 ordered-float = "3.7.0"
19 thiserror = "1.0"
20 chrono = "0.4.26"
21 finl_unicode = "1.2.0"
22 unicase = "2.6.0"
23 libc = "0.2.147"
24 indexmap = "2.1.0"
25
26 [target.'cfg(windows)'.dependencies]
27 windows-sys = { version = "0.48.0", features = ["Win32_Globalization"] }
28
29 [build-dependencies]
30 anyhow = "1.0.69"
31
32 [[bin]]
33 name = "pspp-dump-sav"
34 path = "src/main.rs"
35
36 [lib]
37 path = "src/lib.rs"
38
39 [[test]]
40 name = "sack"
41 path = "tests/sack.rs"
42 harness = false