# 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" name = "grid_pathfinding" version = "0.2.1" authors = ["Thom van der Woude "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Pathfinding using JPS and connected components on a grid." readme = "README.md" keywords = [ "pathfinding", "grid", "jump", "point", "JPS", ] categories = [ "game-development", "simulation", "algorithms", ] license = "MIT" repository = "https://github.com/tbvanderwoude/grid_pathfinding" [lib] name = "grid_pathfinding" path = "src/lib.rs" bench = false [[example]] name = "multiple_goals" path = "examples/multiple_goals.rs" [[example]] name = "paths_and_waypoints" path = "examples/paths_and_waypoints.rs" [[example]] name = "heuristic_factor" path = "examples/heuristic_factor.rs" [[example]] name = "benchmark_runner" path = "examples/benchmark_runner.rs" [[example]] name = "simple_4" path = "examples/simple_4.rs" [[example]] name = "simple_8" path = "examples/simple_8.rs" [[test]] name = "fuzz_test" path = "tests/fuzz_test.rs" [[bench]] name = "comparison_bench" path = "benches/comparison_bench.rs" harness = false [[bench]] name = "single_bench" path = "benches/single_bench.rs" [dependencies.fxhash] version = "0.2" [dependencies.grid_util] version = "0.1" [dependencies.indexmap] version = "2.3" [dependencies.itertools] version = "0.13" [dependencies.log] version = "0.4" [dependencies.num-traits] version = "0.2" [dependencies.petgraph] version = "0.6" [dev-dependencies.criterion] version = "0.4" features = ["html_reports"] [dev-dependencies.rand] version = "0.8.5"