work
[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
25 [target.'cfg(windows)'.dependencies]
26 windows-sys = { version = "0.48.0", features = ["Win32_Globalization"] }
27
28 [build-dependencies]
29 anyhow = "1.0.69"
30
31 [[bin]]
32 name = "pspp-dump-sav"
33 path = "src/main.rs"
34
35 [lib]
36 path = "src/lib.rs"
37
38 [[test]]
39 name = "sack"
40 path = "tests/sack.rs"
41 harness = false