[package] name = "pspp" version = "1.0.0" edition = "2021" authors = [ "Ben Pfaff", "John Darrington" ] [dependencies] anyhow = "1.0.69" clap = { version = "4.1.7", features = ["derive", "wrap_help"] } encoding_rs = "0.8.32" flate2 = "1.0.26" float_next_after = "1.0.0" hexplay = "0.2.1" lazy_static = "1.4.0" num = "0.4.0" num-derive = "0.4.0" num-traits = "0.2.16" ordered-float = "3.7.0" thiserror = "1.0" chrono = "0.4.26" finl_unicode = "1.2.0" unicase = "2.6.0" libc = "0.2.147" indexmap = "2.1.0" [target.'cfg(windows)'.dependencies] windows-sys = { version = "0.48.0", features = ["Win32_Globalization"] } [build-dependencies] anyhow = "1.0.69" [[bin]] name = "pspp-dump-sav" path = "src/main.rs" [lib] path = "src/lib.rs" [[test]] name = "sack" path = "tests/sack.rs" harness = false