[package]
edition = "2018"
name = "morton"
version = "0.3.1"
authors = ["Reinier Maas <reiniermaas@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Morton space filling curve functions"
homepage = "https://github.com/ReinierMaas/morton/"
documentation = "https://docs.rs/morton/"
readme = "README.md"
keywords = [
"morton",
"iterator",
"cache-coherence",
"spatial-locality",
"data-locality",
]
categories = [
"algorithms",
"caching",
"data-structures",
"game-engines",
"memory-management",
]
license = "MIT"
repository = "https://github.com/ReinierMaas/morton/"
[lib]
name = "morton"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[bench]]
name = "morton"
path = "benches/morton.rs"
harness = false
[dev-dependencies.bencher]
version = "0.1"
[dev-dependencies.rand]
version = "0.9"
[lints.clippy]
mod_module_files = "deny"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "allow"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[profile.bench]
lto = true
[profile.release]
lto = true