-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "cdshealpix"
version = "0.8.1"
authors = ["Matthieu Baumann <matthieu.baumann@astro.unistra.fr>", "F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>"]
description = "Python cdshealpix package wrapping code of the cdshealpix crate"
license = "BSD-3-Clause"
readme = "README.md"
categories = ["algorithms", "science"]
keywords = ["healpix", "astronomy"]
documentation = "https://cds-astro.github.io/cds-healpix-python"
homepage = "https://github.com/cds-astro/cds-healpix-python"
repository = "https://github.com/cds-astro/cds-healpix-python"
edition = "2024"
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "cdshealpix"
crate-type = ["cdylib"]
[dependencies]
healpix = {version="0.9.1", package="cdshealpix"}
#healpix = { rev = "9d717cf", package = "cdshealpix", git = 'https://github.com/cds-astro/cds-healpix-rust' }
mapproj = "0.4.0"
rayon = "1.11"
[dependencies.numpy]
version = "0.27"
[dependencies.pyo3]
version = "0.27"
features = ["extension-module"]
[dependencies.ndarray]
version = "0.17"
default-features = false # do not include the default features, and optionally
# cherry-pick individual features
features = ["rayon"]