[package]
edition = "2024"
name = "space-time"
version = "0.4.0"
authors = ["Boyd Johnson <johnson.boyd@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A nightly only library of space-time filling curves that supports no-std."
readme = "README.md"
keywords = [
"spatial",
"space-filling-curves",
"spatio-temporal",
"no-std",
]
license-file = "LICENSE.txt"
repository = "https://github.com/boydjohnson/space_time"
[lib]
name = "space_time"
path = "src/lib.rs"
[[bench]]
name = "bench_xzorder_curve"
path = "benches/bench_xzorder_curve.rs"
[[bench]]
name = "bench_zorder_curve"
path = "benches/bench_zorder_curve.rs"
[dependencies.num-integer]
version = "0.1"
default-features = false
[dependencies.num-traits]
version = "0.2"
features = ["libm"]
default-features = false
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.quickcheck_macros]
version = "1.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]