Mon, 06 Jan 2025 21:37:03 -0500
Attempt to do more Serialize / Deserialize but run into csv problems
0 | 1 | [package] |
2 | name = "pointsource_algs" | |
28 | 3 | version = "2.0.0-dev" |
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 | ||
35 | 24 | [dependencies.alg_tools] |
25 | version = "~0.3.0-dev" | |
26 | path = "../alg_tools" | |
27 | default-features = false | |
28 | features = ["nightly"] | |
29 | ||
0 | 30 | [dependencies] |
31 | serde = { version = "1.0", features = ["derive"] } | |
32 | num-traits = { version = "~0.2.14", features = ["std"] } | |
33 | rand = "~0.8.5" | |
35 | 34 | colored = "~2.1.0" |
0 | 35 | rand_distr = "~0.4.3" |
35 | 36 | nalgebra = { version = "~0.33.0", features = ["rand-no-std"] } |
37 | itertools = "~0.13.0" | |
0 | 38 | numeric_literals = "~0.2.0" |
35 | 39 | GSL = "~7.0.0" |
0 | 40 | float_extras = "~0.1.6" |
35 | 41 | clap = { version = "~4.5.0", features = ["derive", "unicode", "wrap_help"] } |
0 | 42 | cpu-time = "~1.0.0" |
43 | serde_json = "~1.0.85" | |
44 | chrono = { version = "~0.4.23", features = ["alloc", "std", "serde"] } | |
35 | 45 | anyhow = "1.0.95" |
0 | 46 | |
6
bcb508479948
README fine-tuning and build.rs for uglifying it for rustdoc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
47 | [build-dependencies] |
35 | 48 | regex = "~1.11.0" |
6
bcb508479948
README fine-tuning and build.rs for uglifying it for rustdoc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
49 | |
0 | 50 | [profile.release] |
51 | debug = true |