constraint-solver 0.1.1

A small, generic nonlinear constraint solver with symbolic expressions, compilation, and a modified Newton-Raphson method.
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 = "constraint-solver"
version = "0.1.1"
authors = [
    "Raja Lehtihet",
    "Wael El Oraiby",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, generic nonlinear constraint solver with symbolic expressions, compilation, and a modified Newton-Raphson method."
readme = "README.md"
keywords = [
    "constraints",
    "solver",
    "nonlinear",
    "least-squares",
    "optimization",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/NeoCogi/constraint-solver"

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

[[example]]
name = "cad_circle_intersection"
path = "examples/cad_circle_intersection.rs"

[[example]]
name = "cad_segment_horizontal"
path = "examples/cad_segment_horizontal.rs"

[[example]]
name = "circuit_diode"
path = "examples/circuit_diode.rs"

[[example]]
name = "circuit_voltage_divider"
path = "examples/circuit_voltage_divider.rs"

[[example]]
name = "ik_2d_glfw"
path = "examples/ik_2d_glfw.rs"

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

[dependencies.rayon]
version = "1.8"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.glfw]
version = "0.61"

[dev-dependencies.glow]
version = "0.16"

[dev-dependencies.rs-math3d]
version = "0.10"