[package]
name = "beehive"
version = "0.1.1"
authors = ["The beehive contributors"]
readme = "README.md"
repository = "https://github.com/toasteater/beehive"
description = "Utilities and collections for 3D hexagonal maps"
documentation = "https://docs.rs/beehive/"
license = "MIT OR Apache-2.0"
keywords = ["gamedev", "hexagonal", "hex", "coordinate"]
edition = "2018"
[dependencies]
num-traits = "0.2"
serde = { version = "1.0", features = ["derive"], optional = true }
rand = { version = "0.7", optional = true }
thiserror = { version = "1.0", optional = true }
[dev-dependencies]
itertools = "0.8.0"
[features]
default = ["serde-1", "collections"]
collections = ["thiserror"]
serde-1 = ["serde"]
rand-07 = ["rand"]