[package]
edition = "2021"
name = "astrodynamics"
version = "0.6.3"
authors = []
build = "build.rs"
exclude = [
"tests/cpp/**",
"tests/sgp4_diagnostic.rs",
"tests/sgp4_oracle_diff.rs",
"tests/sgp4_json_origin.rs",
"tests/sgp4_regenerate_fixture.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numerical astrodynamics engine for orbit propagation, force models, and flight-dynamics primitives"
homepage = "https://github.com/neilberkman/astrodynamics"
documentation = "https://docs.rs/astrodynamics"
readme = "README.md"
keywords = [
"astrodynamics",
"orbital-mechanics",
"satellite",
"propagation",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/neilberkman/astrodynamics"
[features]
default = ["serde"]
sgp4-debug-oracle = []
[lib]
name = "astrodynamics"
path = "src/lib.rs"
[[test]]
name = "dense_output"
path = "tests/dense_output.rs"
[[test]]
name = "kepler_oracle"
path = "tests/kepler_oracle.rs"
[[test]]
name = "sgp4_vallado_oracle"
path = "tests/sgp4_vallado_oracle.rs"
[dependencies.nalgebra]
version = "0.33"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[build-dependencies.cc]
version = "1"