rust: Add support for portable files.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 17 Sep 2025 15:17:38 +0000 (08:17 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 17 Sep 2025 15:27:49 +0000 (08:27 -0700)
commitfc58c3113fd726880fc139eeb5235af8a8272c2b
tree97be3d33e910d3914bd59fa943d3479203d1be2f
parent937bf791e0da2137a4189b2e37bd3337449bccbd
rust: Add support for portable files.
38 files changed:
rust/Cargo.lock
rust/doc/src/SUMMARY.md
rust/doc/src/commands/export.md
rust/doc/src/commands/import.md
rust/doc/src/invoking/pspp-convert.md
rust/doc/src/invoking/pspp-show-por.md [new file with mode: 0644]
rust/doc/src/invoking/pspp-show.md
rust/doc/src/portable.md
rust/doc/src/spv/index.md
rust/pspp/Cargo.toml
rust/pspp/src/convert.rs
rust/pspp/src/data.rs
rust/pspp/src/file.rs [new file with mode: 0644]
rust/pspp/src/file/testdata/test-encoding.sps [new file with mode: 0644]
rust/pspp/src/file/testdata/test-encrypted.sav [new file with mode: 0644]
rust/pspp/src/file/testdata/test-encrypted.spv [new file with mode: 0644]
rust/pspp/src/file/testdata/test.por [new file with mode: 0644]
rust/pspp/src/file/testdata/test.sav [new file with mode: 0644]
rust/pspp/src/file/testdata/test.sps [new file with mode: 0644]
rust/pspp/src/file/testdata/test.spv [new file with mode: 0644]
rust/pspp/src/format.rs
rust/pspp/src/lib.rs
rust/pspp/src/main.rs
rust/pspp/src/output/pivot.rs
rust/pspp/src/por.rs [new file with mode: 0644]
rust/pspp/src/por/read.rs [new file with mode: 0644]
rust/pspp/src/por/testdata/README.md [new file with mode: 0644]
rust/pspp/src/por/testdata/test1.expected [new file with mode: 0644]
rust/pspp/src/por/testdata/test1.por [new file with mode: 0644]
rust/pspp/src/por/testdata/test2.expected [new file with mode: 0644]
rust/pspp/src/por/testdata/test2.por [new file with mode: 0644]
rust/pspp/src/por/write.rs [new file with mode: 0644]
rust/pspp/src/show.rs
rust/pspp/src/show_por.rs [new file with mode: 0644]
rust/pspp/src/sys.rs
rust/pspp/src/sys/cooked.rs
rust/pspp/src/sys/write.rs
rust/pspp/src/variable.rs