[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"
keywords = [
"astrology",
"astronomy",
"ephemeris",
"julian-date",
"jpl"
]
categories = [
"science",
"date-and-time",
"mathematics",
"simulation"
]
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]
config = "0.15.19"
serde = { version = "1.0", features = ["derive"] }
[[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"