-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 778 Bytes
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
[package]
name = "astronav"
version = "0.2.5"
edition = "2021"
description = "A rust library featuring algorithms for positional astronomy"
authors = ["Venkatesh Omkaram"]
notices = ["Copyright (c) 2024 Venkatesh Omkaram"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/omkarium/astronav"
homepage = "https://github.com/omkarium/astronav"
readme = "README.md"
keywords = ["astronomy", "utility"]
categories = ["science", "aerospace"]
rust-version = "1.69.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
noaa-sun = []
[package.metadata.docs.rs]
features = ["noaa-sun"]
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true