[package]
edition = "2021"
rust-version = "1.89"
name = "astrodyn_frames"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference frame tree and Earth rotation (RNP, nutation, precession) for the astrodyn orbital-dynamics pipeline"
readme = "README.md"
keywords = [
"reference-frame",
"earth-rotation",
"orbital-mechanics",
"aerospace",
"geodesy",
]
categories = [
"science",
"aerospace",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simnaut/astrodyn"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "astrodyn_frames"
path = "src/lib.rs"
[[test]]
name = "tier3_rnp_comparison"
path = "tests/tier3_rnp_comparison.rs"
[dependencies.astrodyn_math]
version = "0.2.0"
[dependencies.astrodyn_quantities]
version = "0.2.0"
[dependencies.glam]
version = "0.30"
features = ["std"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.astrodyn_math]
version = "0.2.0"
features = ["test-utils"]
[dev-dependencies.astrodyn_quantities]
version = "0.2.0"
features = ["test-utils"]
[dev-dependencies.astrodyn_time]
version = "0.2.0"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
as_underscore = "deny"
cast_possible_truncation = "deny"
cast_precision_loss = "deny"
float_cmp = "deny"
lossy_float_literal = "deny"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.missing_docs]
level = "deny"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
invalid_html_tags = "deny"