Tue, 08 Apr 2025 13:08:16 -0500
init
| .hgignore | file | annotate | diff | comparison | revisions | |
| Cargo.toml | file | annotate | diff | comparison | revisions | |
| rust-toolchain.toml | file | annotate | diff | comparison | revisions |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Tue Apr 08 13:08:16 2025 -0500 @@ -0,0 +1,6 @@ +^target/ +^debug_out/ +^pointsource.._.*\.txt +flamegraph.svg +DEADJOE +.*\.orig
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Cargo.toml Tue Apr 08 13:08:16 2025 -0500 @@ -0,0 +1,29 @@ +[package] +name = "pointsource_pde" +version = "0.1.0" +edition = "2021" +rust-version = "1.85" +authors = ["Tuomo Valkonen <tuomov@iki.fi>"] +description = "Algorithms for point source localisation: PDE support" +homepage = "https://tuomov.iki.fi/software/pointsource_algs/" +repository = "https://tuomov.iki.fi/repos/pointsource_algs/" +license-file = "LICENSE" +keywords = ["optimization", "measure", "pointsource", "pde"] +categories = ["mathematics", "science", "computer-vision"] + +[dependencies.alg_tools] +version = "~0.3.1" +path = "../alg_tools" +default-features = false +features = ["nightly"] + +[dependencies] +serde = { version = "1.0", features = ["derive"] } +cxx = "1.0" + +[build-dependencies] +cxx-build = "1.0" +regex = "~1.11.0" + +[profile.release] +debug = true