shadowcast 0.9.0

Implementation of the recursive shadowcast visible-area detection algorithm
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "shadowcast"
version = "0.9.0"
authors = ["Stephen Sherratt <sfsherratt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the recursive shadowcast visible-area detection algorithm"
homepage = "https://github.com/gridbugs/shadowcast.git"
documentation = "https://docs.rs/shadowcast"
readme = "README.md"
license = "MIT"
repository = "https://github.com/gridbugs/shadowcast.git"

[features]
serialize = [
    "serde",
    "direction/serialize",
    "coord_2d/serialize",
]

[lib]
name = "shadowcast"
path = "src/lib.rs"

[dependencies.coord_2d]
version = "0.4"

[dependencies.direction]
version = "0.19"

[dependencies.num-traits]
version = "0.2"
default-features = false

[dependencies.serde]
version = "1"
features = ["serde_derive"]
optional = true

[dev-dependencies.grid_2d]
version = "0.16"