-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
75 lines (66 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "cdshealpix"
version = "0.7.3"
authors = ["F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>"]
edition = "2021"
rust-version = "1.81"
license = "Apache-2.0 OR MIT"
readme = "README.md"
categories = ["algorithms", "science"]
repository = "https://github.com/cds-astro/cds-healpix-rust/"
description = """
Rust implementation of the HEALPix tesselation.
"""
exclude = [
"makeDoc.bash",
"resources/4doc",
]
# Use:
# > cargo rustdoc --open -- --html-in-header katex.html
# to look at the doc locally
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex.html"]
[lib]
name = "cdshealpix"
path = "src/lib.rs"
test = true
doctest = true
bench = true
doc = true
[dependencies]
katex-doc = "0.1.0"
log = "0.4"
# MOC specific
base64 = "0.21" # Added for Compressed MOC
num = "0.4" # Added for MOC
num-traits = "0.2" # Added for MOC
# Skymaps
byteorder = "1.4.3"
thiserror = "1.0"
colorous = "1.0"
mapproj = "0.3"
png = "0.17"
# Compression/decompression
flate2 = "1.0"
# Serialization/Deserialization
serde = { version = "1.0", features = ["derive"] } # MOM serialization/deserialization
bincode = "1.3.3"
toml = "0.8"
# Parallelism (sort)
rayon = "1.10"
# MOM specific
itertools = "0.13"
# For date in FITS written files
chrono = "0.4.39"
memmap2 = "0.9"
[dev-dependencies]
criterion = "0.4"
rand = "0.8"
env_logger = "0.11"
[[bench]]
name = "nested_hash"
harness = false
[[bench]]
name = "zordercurve"
harness = false
[features]