This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
63 lines (52 loc) · 1.49 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
[package]
name = "vsop87"
version = "3.0.0"
license = "MIT/Apache-2.0"
authors = ["Iban Eguia <razican@protonmail.ch>"]
edition = "2021"
rust-version = "1.70"
readme = "README.md"
repository = "https://github.com/Razican/vsop87-rs"
documentation = "https://docs.rs/vsop87/"
description = """
Pure Rust VSOP87 algorithm implementation. Includes all VSOP87 algorith versions:
VSOP87, VSOP87A, VSOP87B, VSOP87C, VSOP87D and VSOP87E.
VSOP87 are a family of algorithms used to predict the position of planets in the
solar system with great accuracy. That position can be used by astronomical
software to create views of the sky, or by simulation software to know the
position of the planets.
"""
keywords = ["vsop87", "simulation", "astrophysics", "astronomy"]
categories = ["science"]
[badges]
travis-ci = { repository = "Razican/vsop87-rs", branch = "master" }
codecov = { repository = "Razican/vsop87-rs", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "Razican/vsop87-rs" }
is-it-maintained-open-issues = { repository = "Razican/vsop87-rs" }
[features]
default = ["simd"]
no_std = ["libm"]
simd = []
[dependencies]
libm = { version = "0.2.8", optional = true }
[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
[[bench]]
name = "vsop87"
harness = false
[[bench]]
name = "vsop87a"
harness = false
[[bench]]
name = "vsop87b"
harness = false
[[bench]]
name = "vsop87c"
harness = false
[[bench]]
name = "vsop87d"
harness = false
[[bench]]
name = "vsop87e"
harness = false