Cargo.toml

Sat, 10 Dec 2022 16:23:58 +0200

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sat, 10 Dec 2022 16:23:58 +0200
changeset 21
62bdbff9a288
parent 12
3297d14c7bff
permissions
-rw-r--r--

Add rust-version specification to Cargo.toml

[package]
name = "alg_tools"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"
authors = ["Tuomo Valkonen <tuomov@iki.fi>"]
description = "Utility routines for iterative numerical algorithms"
homepage = "https://tuomov.iki.fi/software/alg_tools/"
repository = "https://tuomov.iki.fi/repos/alg_tools/"
license-file = "LICENSE"
keywords = ["iterative", "optimization", "bisection", "branch-and-bound", "numerical"]
categories = ["mathematics", "data-structures"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }
csv = "~1.1.6"
nalgebra = "~0.31.0"
num-traits = { version = "~0.2.14", features = ["std"] }
colored = "~2.0.0"
trait-set = "~0.2.0"
num = "~0.4.0"
itertools = "~0.10.3"
numeric_literals = "~0.2.0"
cpu-time = "~1.0.0"
serde_json = "~1.0.85"
rayon = "1.5.3"

[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]


[profile.release]
debug = true

mercurial