-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (33 loc) · 1.21 KB
/
Cargo.toml
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.7.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 = "2021"
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "cdshealpix"
crate-type = ["cdylib"]
[dependencies]
healpix = {version=">=0.7.3", package="cdshealpix"}
#healpix = { rev="5ab172b4d1d206c973f9f170b14509f4982e0090", package = "cdshealpix", git = 'https://github.com/cds-astro/cds-healpix-rust' }
mapproj = "0.3.0"
rayon = "1.10"
[dependencies.numpy]
version = "0.22"
[dependencies.pyo3]
version = "0.22"
features = ["extension-module"]
[dependencies.ndarray]
version = "0.16"
default-features = false # do not include the default features, and optionally
# cherry-pick individual features
features = ["rayon"]