| |
1 [package] |
| |
2 name = "measures" |
| |
3 version = "0.1.0" |
| |
4 edition = "2021" |
| |
5 rust-version = "1.85" |
| |
6 authors = ["Tuomo Valkonen <tuomov@iki.fi>"] |
| |
7 description = "Representation of discrete measures" |
| |
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 "measure", |
| |
13 ] |
| |
14 categories = ["mathematics", "science"] |
| |
15 |
| |
16 [dependencies.alg_tools] |
| |
17 version = "~0.4.0-dev" |
| |
18 path = "../alg_tools" |
| |
19 default-features = false |
| |
20 #features = ["nightly"] |
| |
21 |
| |
22 [dependencies] |
| |
23 serde = { version = "1.0", features = ["derive"] } |
| |
24 nalgebra = { version = "~0.33.0", features = ["rand-no-std"] } |
| |
25 numeric_literals = "~0.2.0" |
| |
26 # All of these dependencies are only required with the `pyo3` feature |
| |
27 pyo3 = { version = "~0.27.0", optional = true } |
| |
28 numpy = { version = "~0.27.0", features = ["nalgebra"], optional = true } |
| |
29 |
| |
30 [features] |
| |
31 default = [] |
| |
32 pyo3 = ["dep:pyo3", "dep:numpy", "alg_tools/pyo3"] |
| |
33 |
| |
34 [build-dependencies] |
| |
35 regex = "~1.11.0" |
| |
36 |
| |
37 [profile.release] |
| |
38 debug = true |