-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.04 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
[package]
name = "astrometry"
version = "0.1.1"
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-astrometry-rust/"
description = """
Rust implementation of astrometrical methods used at CDS.
"""
[features]
default = []
#default = ["arbitraryprec"]
#arbitraryprec = ["dep:astro-float"]
[dependencies]
quick-error = "2.0"
# See also: those 2 libraries containing trigonometric functions!
# * rug (LGPL unfortunatly): https://docs.rs/rug/latest/rug/struct.Float.html
# * astro-float: https://github.com/stencillogic/astro-float/blob/main/src/ops/sin.rs
# See papers:
# * https://www.researchgate.net/publication/361483599_Fast_Trigonometric_functions_for_Arbitrary_Precision_number
# * https://www.cl.cam.ac.uk/~jrh13/papers/fmcad00.pdf
#arpfloat = { version = "0.1", optional = true }
#astro-float = { version = "0.3", optional = true }
[dev-dependencies]
rsofa = "0.5"