-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
58 lines (47 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "MOCPy"
version = "0.17.1"
authors = [
"Matthieu Baumann <[email protected]>",
"Thomas Boch <[email protected]>",
"Manon Marchand <[email protected]>",
"F.-X. Pineau <[email protected]>",
]
edition = "2021"
license = "BSD-3-Clause"
readme = "README.rst"
categories = ["algorithms", "science"]
repository = "https://github.com/cds-astro/mocpy"
description = "MOC parsing and manipulation in Python"
documentation = "https://cds-astro.github.io/mocpy"
exclude = [".*", "binder/", "docs/", "notebooks/", "resources/"]
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "mocpy"
path = "src/lib.rs"
test = true
doctest = true
bench = true
crate-type = ["cdylib"]
[dependencies]
#moc = { version = "0.17", features = ["storage"] }
moc = { git = 'https://github.com/cds-astro/cds-moc-rust', rev = 'f252c2ea3f66cef60e501c2beca2977c439236f8', features = ["storage"] }
healpix = { package = "cdshealpix", version = "0.7" }
# healpix = { package = "cdshealpix", git = 'https://github.com/cds-astro/cds-healpix-rust', branch = 'master' }
rayon = "1.10"
num_threads = "0.1"
[dependencies.numpy]
version = "0.22"
[dependencies.ndarray]
version = "0.16"
default-features = false # do not include the default features, and optionally
# cherry-pick individual features
features = ["rayon"]
[dependencies.pyo3]
version = "0.22"
features = ["extension-module"]
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 0