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