├── .editorconfig ├── .github └── workflows │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── README.tpl ├── rustfmt.toml ├── src ├── from_numpy.rs ├── lib.rs └── to_numpy.rs └── tests ├── errors.rs ├── from_numpy.rs └── to_numpy.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/README.md -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/README.tpl -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/from_numpy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/src/from_numpy.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/to_numpy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/src/to_numpy.rs -------------------------------------------------------------------------------- /tests/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/tests/errors.rs -------------------------------------------------------------------------------- /tests/from_numpy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/tests/from_numpy.rs -------------------------------------------------------------------------------- /tests/to_numpy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fusion-engineering/nalgebra-numpy/HEAD/tests/to_numpy.rs --------------------------------------------------------------------------------