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
22 [build-dependencies]
23 anyhow = "1.0.69"
24
25 [[bin]]
26 name = "pspp-dump-sav"
27 path = "src/main.rs"
28
29 [lib]
30 path = "src/lib.rs"
31
32 [[test]]
33 name = "sack"
34 path = "tests/sack.rs"
35 harness = false