cvode-rust-wrap/Cargo.toml

21 lines
783 B
TOML
Raw Normal View History

2021-06-10 17:34:57 +00:00
[package]
name = "cvode-wrap"
2021-06-10 18:23:35 +00:00
version = "0.1.2"
2021-06-10 17:34:57 +00:00
authors = ["Arthur Carcano <arthur.carcano@inria.fr>"]
edition = "2018"
2021-06-10 17:43:01 +00:00
license = "BSD-3-Clause"
2021-06-10 17:34:57 +00:00
description="A wrapper around cvode and cvodeS from sundials, allowing to solve ordinary differential equations (ODEs) with or without their sensitivities."
repository="https://gitlab.inria.fr/InBio/Public/cvode-rust-wrap/"
readme="Readme.md"
keywords=["sundials","cvode","cvodes","ode","sensitivities"]
categories=["science","simulation","api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-06-10 18:23:35 +00:00
sundials-sys = {version="0.2.3", default-features=false, features=["cvodes"]}
2021-06-10 17:55:46 +00:00
array-init = "2.0"
[package.metadata.docs.rs]
features = ["sundials-sys/build_libraries"]