[package]
edition = "2024"
name = "spatial_table"
version = "0.5.0"
authors = ["Stephen Sherratt <stephen@sherra.tt>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bi-directional association between entities and 2D grid locations"
homepage = "https://github.com/gridbugs/spatial-table.git"
documentation = "https://docs.rs/spatial_table"
readme = "README.md"
license = "MIT"
repository = "https://github.com/gridbugs/spatial-table.git"
[features]
serialize = [
"serde",
"entity_table/serialize",
"grid_2d/serialize",
]
[lib]
name = "spatial_table"
path = "src/lib.rs"
[dependencies.entity_table]
version = "0.2"
[dependencies.grid_2d]
version = "0.16"
[dependencies.serde]
version = "1.0"
features = ["serde_derive"]
optional = true