-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (32 loc) · 1.16 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
[package]
name = "cdshealpix"
version = "0.6.5"
authors = ["Matthieu Baumann <[email protected]>", "F.-X. Pineau <[email protected]>"]
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 = { rev="c4f57bb4dcc2aa888617d0c4da3c1501f05892b3", package = "cdshealpix", git = 'https://github.com/cds-astro/cds-healpix-rust' }
mapproj = "0.3.0"
rayon = "1.10"
[dependencies.numpy]
version = "0.21"
[dependencies.pyo3]
version = "0.21"
features = ["extension-module"]
[dependencies.ndarray]
version = "0.15"
default-features = false # do not include the default features, and optionally
# cherry-pick individual features
features = ["rayon"]