-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
59 lines (48 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "MOCPy"
version = "0.20.0"
authors = [
"Matthieu Baumann <matthieu.baumann@astro.unistra.fr>",
"Thomas Boch <thomas.boch@astro.unistra.fr>",
"Manon Marchand <manon.marchand@astro.unistra.fr>",
"F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>",
]
edition = "2024"
license = "BSD-3-Clause"
readme = "README.md"
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/"]
rust-version = "1.87.0" # minimal compatible rust version
[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.19.2", features = ["storage"] }
# moc = { git = 'https://github.com/cds-astro/cds-moc-rust', rev = '147be185a91b04b75b508b2fe8c2f3a9a2d51d6e', features = ["storage"] }
healpix = { package = "cdshealpix", version = "0.9.1" }
# healpix = { package = "cdshealpix", git = 'https://github.com/cds-astro/cds-healpix-rust', branch = 'master' }
rayon = "1.11"
num_threads = "0.1"
[dependencies.numpy]
version = "0.26"
[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.26"
features = ["extension-module"]
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 0