-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 729 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "morton-encoding"
version = "2.0.1"
authors = ["froderick <velona@ahiru.eu>"]
edition = "2018"
description = "A crate for encoding and decoding Morton (\"Z-order\") keys."
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["Z-order", "fractal", "curve", "Morton"]
categories = ["algorithms"]
homepage = "https://github.com/DoubleHyphen/morton-encoding"
documentation = "https://docs.rs/morton-encoding/"
repository = "https://github.com/DoubleHyphen/morton-encoding"
[dependencies]
num-traits = { version = "0.2", default-features = false }
num = { version = "0.2", default-features = false }
[dev-dependencies]
rand = "0.8"
[features]
default = ["std"]
std = [
"num-traits/std",
"num/std",
]