[package]
edition = "2024"
rust-version = "1.88"
name = "pykep-core"
version = "0.1.2"
authors = ["Dietmar Wolz"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Rust astrodynamics core for the pykep-rust port."
homepage = "https://dietmarwo.github.io/pykep-core-rust/"
documentation = "https://docs.rs/pykep-core"
readme = "README.md"
keywords = [
"astrodynamics",
"orbital-mechanics",
"spaceflight",
"kepler",
]
categories = [
"aerospace",
"mathematics",
"science",
]
license = "MPL-2.0"
repository = "https://github.com/dietmarwo/pykep-core-rust"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["vsop2013"]
vsop2013 = []
[lib]
name = "pykep_core"
path = "src/lib.rs"
[[test]]
name = "foundations_golden"
path = "tests/foundations_golden.rs"
[[test]]
name = "phase10_integrator"
path = "tests/phase10_integrator.rs"
[[test]]
name = "phase11_dynamics"
path = "tests/phase11_dynamics.rs"
[[test]]
name = "phase12_zoh"
path = "tests/phase12_zoh.rs"
[[test]]
name = "phase13_pontryagin"
path = "tests/phase13_pontryagin.rs"
[[test]]
name = "phase14_sims_flanagan"
path = "tests/phase14_sims_flanagan.rs"
[[test]]
name = "phase15_zoh_leg"
path = "tests/phase15_zoh_leg.rs"
[[test]]
name = "phase3_golden"
path = "tests/phase3_golden.rs"
[[test]]
name = "phase4_golden"
path = "tests/phase4_golden.rs"
[[test]]
name = "phase5_golden"
path = "tests/phase5_golden.rs"
[[test]]
name = "phase6_golden"
path = "tests/phase6_golden.rs"
[[test]]
name = "phase7_golden"
path = "tests/phase7_golden.rs"
[[test]]
name = "phase8_golden"
path = "tests/phase8_golden.rs"
[[test]]
name = "phase9_golden"
path = "tests/phase9_golden.rs"
[[bench]]
name = "dynamics"
path = "benches/dynamics.rs"
harness = false
[[bench]]
name = "elements"
path = "benches/elements.rs"
harness = false
[[bench]]
name = "foundation"
path = "benches/foundation.rs"
harness = false
[[bench]]
name = "integration"
path = "benches/integration.rs"
harness = false
[[bench]]
name = "legs"
path = "benches/legs.rs"
harness = false
[[bench]]
name = "mission"
path = "benches/mission.rs"
harness = false
[[bench]]
name = "propagation"
path = "benches/propagation.rs"
harness = false
[dependencies.differential-equations]
version = "0.6.1"
default-features = false
[dependencies.rayon]
version = "1.12"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.serde_json]
version = "1.0.151"
[lints.clippy]
missing_errors_doc = "warn"
missing_panics_doc = "warn"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
[lints.rustdoc]
broken_intra_doc_links = "deny"