├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── benches └── bench.rs ├── examples ├── large.rs ├── plain.npy ├── plain.rs ├── roundtrip.npy ├── roundtrip.rs ├── simple.npy └── simple.rs ├── npy-derive ├── Cargo.toml └── src │ └── lib.rs ├── src ├── header.rs ├── lib.rs ├── npy_data.rs ├── out_file.rs └── serializable.rs └── tests └── roundtrip.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | tests/*.npy 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /examples/large.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/large.rs -------------------------------------------------------------------------------- /examples/plain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/plain.npy -------------------------------------------------------------------------------- /examples/plain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/plain.rs -------------------------------------------------------------------------------- /examples/roundtrip.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/roundtrip.npy -------------------------------------------------------------------------------- /examples/roundtrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/roundtrip.rs -------------------------------------------------------------------------------- /examples/simple.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/simple.npy -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /npy-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/npy-derive/Cargo.toml -------------------------------------------------------------------------------- /npy-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/npy-derive/src/lib.rs -------------------------------------------------------------------------------- /src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/src/header.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/npy_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/src/npy_data.rs -------------------------------------------------------------------------------- /src/out_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/src/out_file.rs -------------------------------------------------------------------------------- /src/serializable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/src/serializable.rs -------------------------------------------------------------------------------- /tests/roundtrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potocpav/npy-rs/HEAD/tests/roundtrip.rs --------------------------------------------------------------------------------