keplerian 0.2.0

Domain-agnostic Keplerian dynamics: typed anomaly solvers, elements, propagation, Lambert, and transfer search.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "keplerian"
version = "0.2.0"
authors = ["VPRamon <vallespuigramon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain-agnostic Keplerian dynamics: typed anomaly solvers, elements, propagation, Lambert, and transfer search."
readme = "README.md"
keywords = [
    "kepler",
    "orbital-mechanics",
    "lambert",
    "astrodynamics",
    "science",
]
categories = [
    "science",
    "mathematics",
    "aerospace",
]
license = "AGPL-3.0-only"
repository = "https://github.com/Siderust/keplerian"

[features]
alloc = ["qtty/alloc"]
default = ["std"]
serde = [
    "dep:serde",
    "qtty/serde",
    "affn/serde",
]
std = ["qtty/std"]

[lib]
name = "keplerian"
path = "src/lib.rs"

[[example]]
name = "anomaly_solve"
path = "examples/anomaly_solve.rs"

[[example]]
name = "lambert_solve"
path = "examples/lambert_solve.rs"

[[example]]
name = "state_elements_roundtrip"
path = "examples/state_elements_roundtrip.rs"

[[example]]
name = "transfer_search"
path = "examples/transfer_search.rs"
required-features = ["alloc"]

[[example]]
name = "two_body_propagation"
path = "examples/two_body_propagation.rs"

[[test]]
name = "anomaly_property"
path = "tests/anomaly_property.rs"

[[test]]
name = "lambert_validation"
path = "tests/lambert_validation.rs"

[[test]]
name = "propagation_invariants"
path = "tests/propagation_invariants.rs"

[dependencies.affn]
version = "0.7.1"
features = ["astro"]
default-features = false

[dependencies.qtty]
version = "0.8"
features = ["satellite"]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.proptest]
version = "1.4"

[lints.clippy]
dbg_macro = "deny"
print_stdout = "warn"
todo = "deny"
unimplemented = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"

[lints.rustdoc]
broken_intra_doc_links = "deny"