[package]
edition = "2024"
rust-version = "1.85"
name = "gooding-lambert"
version = "0.2.0"
authors = ["Nathan Strange <info@visviva.space>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Gooding's method for solving Lambert's orbital boundary-value problem"
homepage = "https://github.com/nstrange/gooding-lambert"
documentation = "https://docs.rs/gooding-lambert"
readme = "README.md"
keywords = [
"lambert",
"orbital-mechanics",
"astrodynamics",
"trajectory",
"gooding",
]
categories = ["science"]
license = "MIT"
repository = "https://github.com/nstrange/gooding-lambert"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
gooding-ffi = ["dep:cc"]
[lib]
name = "gooding_lambert"
path = "src/lib.rs"
[[test]]
name = "cross_validate_c"
path = "tests/cross_validate_c.rs"
[[test]]
name = "cross_validate_gooding"
path = "tests/cross_validate_gooding.rs"
[[test]]
name = "input_validation"
path = "tests/input_validation.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies]
[build-dependencies.cc]
version = "1"
optional = true