-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (46 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
57 lines (46 loc) · 1.08 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
57
[package]
name = "runiverse"
version = "0.4.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/MattBlack85/libuniverse/"
authors = ["Mattia Procopio"]
readme = "README.md"
description = "A pure and safe Rust library to make astronomical calculations and solve astronomical algorithms"
categories = ["algorithms", "science"]
keywords = ["libnova", "astronomy", "astrophotography", "meeus"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "runiverse"
path = "src/lib.rs"
crate-type = ["dylib", "lib"]
[dependencies]
libmath = "0.2"
regex = "1.6"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[profile.release]
codegen-units = 1
[profile.bench]
opt-level = 3
lto = false
codegen-units = 1
debug = false
[[bench]]
name = "julian_day"
harness = false
[[bench]]
name = "transform"
harness = false
[[bench]]
name = "dynamical_time"
harness = false
[[bench]]
name = "sidereal_time"
harness = false
[[bench]]
name = "fit_degrees"
harness = false
[[bench]]
name = "nutation"
harness = false