rustsim-pathfinding 0.0.1

Generic A* and grid-specific pathfinding for rustsim
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 = "2021"
rust-version = "1.94.0"
name = "rustsim-pathfinding"
version = "0.0.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic A* and grid-specific pathfinding for rustsim"
readme = false
keywords = [
    "pathfinding",
    "astar",
    "grid",
    "simulation",
    "abm",
]
categories = [
    "science",
    "simulation",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/rustsim/rustsim"

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

[[test]]
name = "astar_tests"
path = "tests/astar_tests.rs"

[[test]]
name = "pathfinding_tests"
path = "tests/pathfinding_tests.rs"

[[bench]]
name = "pathfinding_bench"
path = "benches/pathfinding_bench.rs"
harness = false

[dependencies.rand]
version = "0.8"

[dependencies.thiserror]
version = "2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]