[package]
edition = "2021"
name = "astrodyn_quantities"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Phantom-tagged typed quantities (Position, Velocity, ...) for orbital dynamics"
readme = "README.md"
keywords = [
"orbital-mechanics",
"physics",
"type-system",
"aerospace",
]
categories = [
"science",
"aerospace",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simnaut/astrodyn"
[package.metadata.docs.rs]
all-features = true
[features]
test-utils = []
[lib]
name = "astrodyn_quantities"
path = "src/lib.rs"
[[test]]
name = "f64_ext"
path = "tests/f64_ext.rs"
[[test]]
name = "frame_transform_compose"
path = "tests/frame_transform_compose.rs"
[[test]]
name = "harmonic"
path = "tests/harmonic.rs"
[[test]]
name = "inertia"
path = "tests/inertia.rs"
[[test]]
name = "proptest_round_trips"
path = "tests/proptest_round_trips.rs"
[[test]]
name = "qty3_ops"
path = "tests/qty3_ops.rs"
[[test]]
name = "quat_normalized"
path = "tests/quat_normalized.rs"
[[test]]
name = "time_converter"
path = "tests/time_converter.rs"
[[test]]
name = "typed_grav_param"
path = "tests/typed_grav_param.rs"
[dependencies.glam]
version = "0.30"
features = ["std"]
[dependencies.thiserror]
version = "2"
[dependencies.typenum]
version = "1.20"
[dependencies.uom]
version = "0.38"
features = [
"f64",
"si",
"std",
]
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.missing_docs]
level = "deny"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
invalid_html_tags = "deny"