rust-jpl 0.0.1

Rust library for NASA JPL DE441 ephemeris: precise planetary positions for astronomy, astrophysics, and astrology applications
Documentation
[package]
name = "rust-jpl"
version = "0.0.1"
edition = "2021"
authors = ["Chinmay Vivek <iam@chinmayvivek.com>"]
description = "Rust library for NASA JPL DE441 ephemeris: precise planetary positions for astronomy, astrophysics, and astrology applications"
license = "MIT"
repository = "https://github.com/chinmayvivek/rust-jpl"
documentation = "https://docs.rs/rust-jpl"
homepage = "https://github.com/chinmayvivek/rust-jpl"
readme = "crates-io.md"

# --- optimized keywords (max 5) ---
keywords = [
    "astrology",
    "astronomy",
    "ephemeris",
    "julian-date",
    "jpl"
]

# --- categories on crates.io ---
categories = [
    "science",         # general scientific domain
    "date-and-time",   # works with Julian dates and ephemeris
    "mathematics",     # numerical and scientific calculations
    "simulation"       # for orbital/space simulation use-cases
]

# --- exclude large binary data from the crate ---
exclude = [
    "assets/linux_m13000p17000.441.bsp",
    "assets/header.441",
    "assets/Initial_data.dat",
    "assets/testpo.441",
]

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

[[bin]]
name = "rust-jpl"
path = "src/main.rs"

# --- dependencies ---
[dependencies]
config = "0.15.19"
serde = { version = "1.0", features = ["derive"] }

# --- examples for discoverability ---
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

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

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