Fri, 28 Mar 2025 08:38:05 -0500
bump version
2 | 1 | [package] |
2 | name = "non-riemannian-opt" | |
3 | version = "0.1.0" | |
48
854e914f99c5
alg_tools now support stable, so return to edition 2021 now to allow stable rust.
Tuomo Valkonen <tuomov@iki.fi>
parents:
47
diff
changeset
|
4 | edition = "2021" |
2 | 5 | authors = ["Tuomo Valkonen <tuomov@iki.fi>", "Heikki von Koch <heikki.vonkoch@helsinki.fi>"] |
6 | description = "Simple optimisation experiments on non-Riemannian manifolds" | |
7 | #homepage = "" | |
8 | #repository = "" | |
54
cfd8d2304e9e
Some README and Cargo.toml details
Tuomo Valkonen <tuomov@iki.fi>
parents:
52
diff
changeset
|
9 | license-file = "LICENSE" |
2 | 10 | keywords = [ |
11 | "optimization", | |
12 | "manifold", | |
13 | "non-Riemannian", | |
14 | "forward-backward", | |
15 | ] | |
16 | categories = ["mathematics", "science", "computer-vision"] | |
17 | ||
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
18 | [dependencies.alg_tools] |
58 | 19 | version = "~0.3.0" |
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
20 | path = "../alg_tools" |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
21 | default-features = false |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
22 | |
2 | 23 | [dependencies] |
4 | 24 | serde = { version = "1.0", features = ["derive"] } |
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
25 | colored = "~2.1.0" |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
26 | image = "~0.25.5" |
12 | 27 | serde_repr = "0.1" |
37
d7cd14b8ccc0
Basic cylinder implementation
Tuomo Valkonen <tuomov@iki.fi>
parents:
12
diff
changeset
|
28 | |
46 | 29 | [build-dependencies] |
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
30 | regex = "~1.11.1" |