|
1 [package] |
|
2 name = "pointsource_algs" |
|
3 version = "0.1.0" |
|
4 edition = "2021" |
|
5 authors = ["Tuomo Valkonen <tuomov@iki.fi>"] |
|
6 description = "Algorithms for point source localisation" |
|
7 homepage = "https://tuomov.iki.fi/software/pointsource_algs/" |
|
8 repository = "https://tuomov.iki.fi/repos/pointsource_algs/" |
|
9 license-file = "LICENSE" |
|
10 keywords = [ |
|
11 "optimization", |
|
12 "measure", |
|
13 "pointsource", |
|
14 "forward-backward", |
|
15 "primal-dual", |
|
16 "pdps", |
|
17 "fista", |
|
18 "frank-wolfe", |
|
19 "conditional gradient" |
|
20 ] |
|
21 categories = ["mathematics", "science", "computer-vision"] |
|
22 |
|
23 [dependencies] |
|
24 alg_tools = { version = "~0.1.0", path = "../alg_tools", default-features = false } |
|
25 serde = { version = "1.0", features = ["derive"] } |
|
26 num-traits = { version = "~0.2.14", features = ["std"] } |
|
27 rand = "~0.8.5" |
|
28 colored = "~2.0.0" |
|
29 rand_distr = "~0.4.3" |
|
30 nalgebra = { version = "~0.31.0", features = ["rand-no-std"] } |
|
31 itertools = "~0.10.3" |
|
32 numeric_literals = "~0.2.0" |
|
33 poloto = "~3.13.1" |
|
34 GSL = "~6.0.0" |
|
35 float_extras = "~0.1.6" |
|
36 clap = { version = "~4.0.27", features = ["derive", "unicode", "wrap_help"] } |
|
37 image = "~0.24.3" |
|
38 cpu-time = "~1.0.0" |
|
39 colorbrewer = "~0.2.0" |
|
40 rgb = "~0.8.33" |
|
41 serde_json = "~1.0.85" |
|
42 chrono = { version = "~0.4.23", features = ["alloc", "std", "serde"] } |
|
43 |
|
44 [profile.release] |
|
45 debug = true |