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 flate2 = "1.0.26"
11 float_next_after = "1.0.0"
12 hexplay = "0.2.1"
13 lazy_static = "1.4.0"
14 num = "0.4.0"
15 num-derive = "0.4.0"
16 num-traits = "0.2.16"
17 ordered-float = "3.7.0"
18 thiserror = "1.0"
19
20 [build-dependencies]
21 anyhow = "1.0.69"
22
23 [[bin]]
24 name = "pspp-dump-sav"
25 path = "src/main.rs"
26
27 [lib]
28 path = "src/lib.rs"
29
30 [[test]]
31 name = "sack"
32 path = "tests/sack.rs"
33 harness = false