├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── distance_benchmark.rs ├── renovate.json ├── rust-toolchain.toml ├── src └── lib.rs └── tests └── integration_test.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Turbo87 2 | custom: https://paypal.me/tobiasbieniek 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | .criterion 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/distance_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/benches/distance_benchmark.rs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/integration_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turbo87/flat-projection-rs/HEAD/tests/integration_test.rs --------------------------------------------------------------------------------