utsuroi 0.2.0

Numerical ODE integrators (RK4, Dormand-Prince, Störmer-Verlet, Yoshida) for orbital mechanics and rigid-body simulation.
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.91.0"
name = "utsuroi"
version = "0.2.0"
authors = ["sksat <sksat@sksat.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numerical ODE integrators (RK4, Dormand-Prince, Störmer-Verlet, Yoshida) for orbital mechanics and rigid-body simulation."
homepage = "https://sksat.github.io/orts/"
readme = "README.md"
keywords = [
    "ode",
    "integrator",
    "numerical",
    "simulation",
    "orbital",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT"
repository = "https://github.com/sksat/orts"
resolver = "2"

[features]
default = ["std"]
std = ["nalgebra/std"]

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

[dependencies.libm]
version = "0.2.16"

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

[dev-dependencies.proptest]
version = "1.10.0"