Cargo.toml

Fri, 06 Dec 2024 16:16:48 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Fri, 06 Dec 2024 16:16:48 -0500
changeset 48
854e914f99c5
parent 47
5e623b327625
child 52
1d8e5731a4d3
permissions
-rw-r--r--

alg_tools now support stable, so return to edition 2021 now to allow stable rust.

[package]
name = "non-riemannian-opt"
version = "0.1.0"
edition = "2021"
authors = ["Tuomo Valkonen <tuomov@iki.fi>", "Heikki von Koch <heikki.vonkoch@helsinki.fi>"]
description = "Simple optimisation experiments on non-Riemannian manifolds"
#homepage = ""
#repository = ""
#license-file = "LICENSE"
keywords = [
    "optimization",
    "manifold",
    "non-Riemannian",
    "forward-backward",
]
categories = ["mathematics", "science", "computer-vision"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0", features = ["derive"] }
alg_tools = { version = "~0.3.0-dev", path = "../alg_tools", default-features = false }
colored = "~2.0.0"
image = "~0.24.3"
serde_repr = "0.1"

[build-dependencies]
regex = "~1.7.0"

mercurial