oxiflow 0.3.0

Generic PDE solving engine for transport, reaction and diffusion phenomena (∂u/∂t + ∇·F = S)
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 = "2021"
rust-version = "1.80"
name = "oxiflow"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic PDE solving engine for transport, reaction and diffusion phenomena (∂u/∂t + ∇·F = S)"
homepage = "https://github.com/biface/oxiflow"
documentation = "https://docs.rs/oxiflow"
readme = "README.md"
keywords = [
    "pde",
    "solver",
    "transport",
    "diffusion",
    "numerical",
]
categories = [
    "science",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/biface/oxiflow"

[features]
default = []
hdf5 = ["dep:hdf5"]
parallel = ["dep:rayon"]
serde = [
    "dep:serde",
    "nalgebra/serde-serialize",
]

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

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

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

[dependencies.hdf5]
version = "0.8"
optional = true

[dependencies.nalgebra]
version = "0.33"

[dependencies.rayon]
version = "1"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

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

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

[profile.release]
opt-level = 3
lto = true