[package]
edition = "2021"
name = "astrodyn_runner"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone arena-state simulation harness driving the astrodyn pipeline without Bevy ECS"
readme = "README.md"
keywords = [
"orbital-mechanics",
"simulation",
"propagator",
"aerospace",
]
categories = [
"science",
"aerospace",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simnaut/astrodyn"
[features]
phase_timing = []
[lib]
name = "astrodyn_runner"
path = "src/lib.rs"
bench = false
[[example]]
name = "apollo"
path = "examples/apollo.rs"
[[example]]
name = "batch_propagation"
path = "examples/batch_propagation.rs"
[[example]]
name = "leo_drag"
path = "examples/leo_drag.rs"
[[test]]
name = "integ_frame_translation_invariance"
path = "tests/integ_frame_translation_invariance.rs"
[[test]]
name = "pipeline_earth_lighting"
path = "tests/pipeline_earth_lighting.rs"
[[test]]
name = "runner_attach_detach_momentum"
path = "tests/runner_attach_detach_momentum.rs"
[[test]]
name = "step_error_destructure"
path = "tests/step_error_destructure.rs"
[dependencies.astrodyn]
version = "0.1.0"
[dependencies.glam]
version = "0.30"
features = ["std"]
[dependencies.log]
version = "0.4"
[dependencies.uom]
version = "0.38"
features = [
"f64",
"si",
"std",
]
default-features = false
[lints.rust]
unsafe_code = "forbid"
[lints.rust.missing_docs]
level = "deny"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
invalid_html_tags = "deny"