[package]
edition = "2021"
rust-version = "1.85"
name = "hexgridspiral"
version = "0.3.0"
authors = ["Eric Mink"]
build = false
include = [
"**/*.rs",
"./Cargo.toml",
"./README.md",
"./README.assets/*",
"./changelog.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hexagonal Cube-Coordinate System with Spiralling Integer Tile Identifiers"
documentation = "https://docs.rs/crate/hexgridspiral/latest"
readme = "README.md"
keywords = [
"hexgrid",
"hexagonal",
"grid",
"spiral",
"tile",
]
categories = [
"mathematics",
"game-development",
"data-structures",
"science::geo",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lucidBrot/hexgridspiral"
[package.metadata.docs.rs]
features = ["nightly"]
[features]
nightly = []
[lib]
name = "hexgridspiral"
path = "src/lib.rs"
[[example]]
name = "spiral"
path = "examples/spiral/main.rs"
[dependencies.approx_eq]
version = "0.1"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.derive_more]
version = "2"
features = [
"from",
"add",
"mul",
"into",
"display",
"not",
]
[dependencies.num_enum]
version = "0.7.3"
[dependencies.rand]
version = "0.9.0"
[dependencies.rand_chacha]
version = "0.9.0"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]