rayx 0.2.0

Fast ray intersection using Baldwin-Weber algorithm
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 = "rayx"
version = "0.2.0"
build = false
include = [
    "/src",
    "/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast ray intersection using Baldwin-Weber algorithm"
homepage = "https://github.com/p-sira/rayx"
documentation = "https://docs.rs/rayx"
readme = "README.md"
keywords = [
    "raytracing",
    "intersection",
    "geometry",
    "graphics",
    "triangle",
]
categories = [
    "graphics",
    "mathematics",
    "game-development",
    "algorithms",
    "no-std",
]
license = "BSD-3-Clause"
repository = "https://github.com/p-sira/rayx"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
std = [
    "num-traits/std",
    "nalgebra/std",
]

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

[dependencies.nalgebra]
version = "0.34"
features = ["libm"]
default-features = false

[dependencies.num-traits]
version = "0.2"
default-features = false

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

[dev-dependencies.stl_io]
version = "0.7"