forked from CHINMAYVIVEK/rust-jpl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 998 Bytes
/
Cargo.toml
File metadata and controls
45 lines (39 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "rust-jpl"
version = "0.0.1"
edition = "2021"
authors = ["Chinmay Vivek <chinmay.vivek@gmail.com>"]
description = "A Rust library for parsing NASA JPL ephemeris data, providing precise planetary positions based on Julian dates"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinmayvivek/rust-jpl"
documentation = "https://docs.rs/rust-jpl"
homepage = "https://github.com/chinmayvivek/rust-jpl"
readme = "README.md"
keywords = [
"jpl",
"ephemeris",
"astronomy",
"planetary",
"julian-date",
"nasa",
"de441",
]
categories = ["science", "astronomy"]
[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"