# 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 = "vleue_navigator" version = "0.10.2" authors = ["François Mockers "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Navmesh plugin for Bevy" homepage = "https://github.com/vleue/vleue_navigator" documentation = "https://docs.rs/vleue_navigator" readme = "README.md" keywords = [ "pathfinding", "bevy", "navmesh", "navigation", ] categories = ["game-development"] license = "MIT OR Apache-2.0" repository = "https://github.com/vleue/vleue_navigator" [package.metadata.docs.rs] features = ["detailed-layers"] [lib] name = "vleue_navigator" path = "src/lib.rs" [[example]] name = "auto_navmesh_aabb" path = "examples/auto_navmesh_aabb.rs" [[example]] name = "auto_navmesh_avian2d" path = "examples/auto_navmesh_avian2d.rs" required-features = ["avian2d"] [[example]] name = "auto_navmesh_avian3d" path = "examples/auto_navmesh_avian3d.rs" required-features = ["avian3d"] [[example]] name = "auto_navmesh_avian3d_inclined" path = "examples/auto_navmesh_avian3d_inclined.rs" required-features = ["avian3d"] [[example]] name = "auto_navmesh_primitive" path = "examples/auto_navmesh_primitive.rs" [[example]] name = "demo" path = "examples/demo.rs" [[example]] name = "gltf" path = "examples/gltf.rs" [[example]] name = "gltf_avian3d" path = "examples/gltf_avian3d.rs" required-features = [ "avian3d", "avian3d/collider-from-mesh", ] [[example]] name = "layers" path = "examples/layers.rs" required-features = [ "avian3d", "detailed-layers", ] [[example]] name = "layers_basic" path = "examples/layers_basic.rs" required-features = ["avian3d"] [[example]] name = "layers_inclined" path = "examples/layers_inclined.rs" required-features = [ "avian3d", "detailed-layers", ] [[example]] name = "lines" path = "examples/lines.rs" [[example]] name = "many" path = "examples/many.rs" [[example]] name = "moving" path = "examples/moving.rs" [[example]] name = "primitive_3d" path = "examples/primitive_3d.rs" [[example]] name = "random_obstacles" path = "examples/random_obstacles.rs" [dependencies.avian2d] version = "0.1" features = [ "2d", "f32", "parry-f32", ] optional = true default-features = false [dependencies.avian3d] version = "0.1" features = [ "3d", "f32", "parry-f32", ] optional = true default-features = false [dependencies.bevy] version = "0.14.0" features = [ "bevy_render", "bevy_asset", ] default-features = false [dependencies.itertools] version = "0.13" [dependencies.polyanya] version = "0.11.1" [dependencies.tracing] version = "0.1" optional = true [dev-dependencies.bevy] version = "0.14.0" features = [ "bevy_ui", "bevy_text", "bevy_winit", "bevy_core_pipeline", "bevy_scene", "bevy_gltf", "bevy_pbr", "bevy_sprite", "bevy_gizmos", "tonemapping_luts", "multi_threaded", "bevy_state", "default_font", "x11", ] default-features = false [dev-dependencies.rand] version = "0.8" [features] debug-with-gizmos = ["bevy/bevy_gizmos"] default = ["debug-with-gizmos"] detailed-layers = ["polyanya/detailed-layers"]