mesh-graph 0.5.0

Fast halfedge triangle mesh graph in pure Rust
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 = "mesh-graph"
version = "0.5.0"
build = false
exclude = [
    "examples/",
    "tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast halfedge triangle mesh graph in pure Rust "
readme = "README.md"
keywords = [
    "3D",
    "halfedge-graph",
    "mesh",
    "real-time",
    "topology",
]
categories = [
    "algorithms",
    "graphics",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/Synphonyte/mesh-graph"

[features]
bevy = ["dep:bevy"]
default = []
gltf = ["dep:gltf"]
rerun = [
    "dep:cfg-if",
    "dep:lazy_static",
    "dep:rerun",
]
serde = [
    "dep:serde",
    "glam/serde",
    "hashbrown/serde",
    "slotmap/serde",
]

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

[[bin]]
name = "vertex-neighborhood"
path = "src/bin/vn.rs"
required-features = ["gltf"]

[dependencies.anyhow]
version = "1"

[dependencies.bevy]
version = "0.18"
features = [
    "bevy_asset",
    "bevy_mesh",
]
optional = true
default-features = false

[dependencies.cfg-if]
version = "1"
optional = true

[dependencies.derive_more]
version = "2"
features = [
    "deref",
    "deref_mut",
]

[dependencies.glam]
version = "0.30"

[dependencies.gltf]
version = "1.4"
optional = true

[dependencies.hashbrown]
version = "0.16"

[dependencies.itertools]
version = "0.14"

[dependencies.lazy_static]
version = "1.5.0"
optional = true

[dependencies.parry3d]
version = "0.26"

[dependencies.rerun]
version = "0.30"
features = ["sdk"]
optional = true
default-features = false

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

[dependencies.slotmap]
version = "1"

[dependencies.tracing]
version = "0.1"
features = ["release_max_level_off"]

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]