Tue, 08 Apr 2025 13:08:16 -0500
init
| 0 | 1 | [package] |
| 2 | name = "pointsource_pde" | |
| 3 | version = "0.1.0" | |
| 4 | edition = "2021" | |
| 5 | rust-version = "1.85" | |
| 6 | authors = ["Tuomo Valkonen <tuomov@iki.fi>"] | |
| 7 | description = "Algorithms for point source localisation: PDE support" | |
| 8 | homepage = "https://tuomov.iki.fi/software/pointsource_algs/" | |
| 9 | repository = "https://tuomov.iki.fi/repos/pointsource_algs/" | |
| 10 | license-file = "LICENSE" | |
| 11 | keywords = ["optimization", "measure", "pointsource", "pde"] | |
| 12 | categories = ["mathematics", "science", "computer-vision"] | |
| 13 | ||
| 14 | [dependencies.alg_tools] | |
| 15 | version = "~0.3.1" | |
| 16 | path = "../alg_tools" | |
| 17 | default-features = false | |
| 18 | features = ["nightly"] | |
| 19 | ||
| 20 | [dependencies] | |
| 21 | serde = { version = "1.0", features = ["derive"] } | |
| 22 | cxx = "1.0" | |
| 23 | ||
| 24 | [build-dependencies] | |
| 25 | cxx-build = "1.0" | |
| 26 | regex = "~1.11.0" | |
| 27 | ||
| 28 | [profile.release] | |
| 29 | debug = true |