solvr 0.1.0

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
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.85"
name = "solvr"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more"
homepage = "https://github.com/ml-rust/solvr"
documentation = "https://docs.rs/solvr"
readme = "README.md"
keywords = [
    "solver",
    "optimization",
    "ode",
    "interpolation",
    "statistics",
]
categories = [
    "algorithms",
    "mathematics",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/ml-rust/solvr"

[package.metadata.docs.rs]
no-default-features = true
features = [
    "graph",
    "pde",
]

[features]
cuda = ["numr/cuda"]
default = [
    "graph",
    "pde",
]
f16 = ["numr/f16"]
graph = ["sparse"]
pde = ["sparse"]
sparse = ["numr/sparse"]
wgpu = ["numr/wgpu"]

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

[dependencies.numr]
version = "0.1.1"

[dev-dependencies]