Sat, 07 Dec 2024 14:08:27 -0500
Update README and dependencies.
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 = "" | |
9 | #license-file = "LICENSE" | |
10 | keywords = [ | |
11 | "optimization", | |
12 | "manifold", | |
13 | "non-Riemannian", | |
14 | "forward-backward", | |
15 | ] | |
16 | categories = ["mathematics", "science", "computer-vision"] | |
17 | ||
18 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
19 | ||
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
20 | [dependencies.alg_tools] |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
21 | version = "~0.3.0-dev" |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
22 | path = "../alg_tools" |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
23 | default-features = false |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
24 | |
2 | 25 | [dependencies] |
4 | 26 | serde = { version = "1.0", features = ["derive"] } |
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
27 | colored = "~2.1.0" |
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
28 | image = "~0.25.5" |
12 | 29 | serde_repr = "0.1" |
37
d7cd14b8ccc0
Basic cylinder implementation
Tuomo Valkonen <tuomov@iki.fi>
parents:
12
diff
changeset
|
30 | |
46 | 31 | [build-dependencies] |
52
1d8e5731a4d3
Update README and dependencies.
Tuomo Valkonen <tuomov@iki.fi>
parents:
48
diff
changeset
|
32 | regex = "~1.11.1" |