mirror of
https://github.com/kristoferssolo/hexlab.git
synced 2025-10-21 19:40:34 +00:00
24 lines
611 B
TOML
24 lines
611 B
TOML
[package]
|
|
name = "hexlab"
|
|
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A hexagonal maze library"
|
|
repository = "https://github.com/kristoferssolo/hexlab"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["maze", "hex", "hexagons"]
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.14", optional = true }
|
|
hexx = { version = "0.18" }
|
|
rand = "0.8"
|
|
rand_chacha = "0.3"
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "hexx/serde", "rand_chacha/serde"]
|
|
bevy = ["dep:bevy", "hexx/bevy_reflect"]
|
|
|
|
[dev-dependencies]
|