waymark 0.1.0

Pathfinding and spatial queries on navigation meshes
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"
rust-version = "1.92"
name = "waymark"
version = "0.1.0"
authors = ["Daniel S. Reichenbach <daniel@kogito.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pathfinding and spatial queries on navigation meshes"
readme = "README.md"
keywords = [
    "pathfinding",
    "waymark",
    "navmesh",
    "astar",
    "navigation",
]
categories = [
    "game-development",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wowemulation-dev/recast-rs"

[features]
default = []
serialization = [
    "serde",
    "serde_json",
    "postcard",
    "byteorder",
]

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

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

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

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

[dependencies.bitflags]
version = "2.10"
features = ["serde"]

[dependencies.byteorder]
version = "1.5"
optional = true

[dependencies.glam]
version = "0.30"
features = ["serde"]

[dependencies.landmark]
version = "0.1.0"

[dependencies.landmark-common]
version = "0.1.0"

[dependencies.log]
version = "0.4"

[dependencies.ordered-float]
version = "5.1"

[dependencies.postcard]
version = "1.1"
features = ["alloc"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.assert_approx_eq]
version = "1.1"

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

[dev-dependencies.tempfile]
version = "3.24"

[lints.clippy.all]
level = "allow"
priority = -1

[lints.clippy.cargo]
level = "allow"
priority = -1

[lints.clippy.cargo_common_metadata]
level = "allow"
priority = 1

[lints.clippy.cast_lossless]
level = "allow"
priority = 1

[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1

[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 1

[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1

[lints.clippy.cast_sign_loss]
level = "allow"
priority = 1

[lints.clippy.comparison_chain]
level = "allow"
priority = 1

[lints.clippy.doc_markdown]
level = "allow"
priority = 1

[lints.clippy.expect_used]
level = "allow"
priority = 2

[lints.clippy.float_cmp]
level = "allow"
priority = 1

[lints.clippy.if_not_else]
level = "allow"
priority = 1

[lints.clippy.indexing_slicing]
level = "allow"
priority = 1

[lints.clippy.items_after_test_module]
level = "allow"
priority = 1

[lints.clippy.many_single_char_names]
level = "allow"
priority = 1

[lints.clippy.missing_const_for_fn]
level = "allow"
priority = 1

[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1

[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1

[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1

[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1

[lints.clippy.must_use_candidate]
level = "allow"
priority = 1

[lints.clippy.nursery]
level = "allow"
priority = -1

[lints.clippy.option_if_let_else]
level = "allow"
priority = 1

[lints.clippy.panic]
level = "allow"
priority = 2

[lints.clippy.pedantic]
level = "allow"
priority = -1

[lints.clippy.redundant_else]
level = "allow"
priority = 1

[lints.clippy.similar_names]
level = "allow"
priority = 1

[lints.clippy.struct_excessive_bools]
level = "allow"
priority = 1

[lints.clippy.suboptimal_flops]
level = "allow"
priority = 1

[lints.clippy.suspicious_operation_groupings]
level = "allow"
priority = 1

[lints.clippy.todo]
level = "warn"
priority = 2

[lints.clippy.too_many_lines]
level = "allow"
priority = 1

[lints.clippy.unimplemented]
level = "warn"
priority = 2

[lints.clippy.unnecessary_wraps]
level = "allow"
priority = 1

[lints.clippy.unreadable_literal]
level = "allow"
priority = 1

[lints.clippy.unwrap_used]
level = "allow"
priority = 2

[lints.clippy.use_self]
level = "allow"
priority = 1

[lints.rust]
unsafe_code = "allow"