diffurch 0.0.3

Numerical solver for ordinary and delay differential equations
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 = "diffurch"
version = "0.0.3"
authors = ["Danila Bain <danila.bain@yandex.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numerical solver for ordinary and delay differential equations"
homepage = "https://github.com/Danila-Bain/diffurch"
readme = "README.md"
keywords = [
    "ODE",
    "numerical",
    "Runge-Kutta",
    "event",
    "dense",
]
categories = [
    "mathematics",
    "science",
    "simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Danila-Bain/diffurch"

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

[[example]]
name = "dde-linear-1-sin"
path = "examples/dde-linear-1-sin.rs"

[[example]]
name = "dde-relay-clamp"
path = "examples/dde-relay-clamp.rs"

[[example]]
name = "loc-billiard"
path = "examples/loc-billiard.rs"

[[example]]
name = "loc-bounce"
path = "examples/loc-bounce.rs"

[[example]]
name = "loc-switch-parameter"
path = "examples/loc-switch-parameter.rs"

[[example]]
name = "ndde-linear-1-sin"
path = "examples/ndde-linear-1-sin.rs"

[[example]]
name = "ndde-linear-1-sin-2"
path = "examples/ndde-linear-1-sin-2.rs"

[[example]]
name = "ndde-nonlinear"
path = "examples/ndde-nonlinear.rs"

[[example]]
name = "ode-2-relay-msign"
path = "examples/ode-2-relay-msign.rs"

[[example]]
name = "ode-chaos-lorenz"
path = "examples/ode-chaos-lorenz.rs"

[[example]]
name = "ode-linear-1-exp"
path = "examples/ode-linear-1-exp.rs"

[[example]]
name = "ode-linear-2-sin"
path = "examples/ode-linear-2-sin.rs"

[[example]]
name = "ode-linear-3-fibonacci"
path = "examples/ode-linear-3-fibonacci.rs"

[[example]]
name = "plotting-textplots"
path = "examples/plotting-textplots.rs"

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

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

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

[[bench]]
name = "2d_arrays"
path = "benches/2d_arrays.rs"

[[bench]]
name = "closures"
path = "benches/closures.rs"

[[bench]]
name = "harmonic_oscillator"
path = "benches/harmonic_oscillator.rs"

[[bench]]
name = "polynomial"
path = "benches/polynomial.rs"

[dependencies.hlist2]
version = "0.0.15"

[dependencies.num-traits]
version = "0.2.19"

[dev-dependencies.ndarray]
version = "0.16.1"

[dev-dependencies.pgfplots]
version = "0.5.1"

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

[dev-dependencies.rgb]
version = "0.8.50"

[dev-dependencies.serde_json]
version = "1.0.140"

[dev-dependencies.term_size]
version = "0.3.2"

[dev-dependencies.textplots]
version = "0.8.7"