[package]
edition = "2021"
rust-version = "1.85"
name = "spicekit"
version = "0.2.2"
authors = [
"Alec Koumjian <alec@b612foundation.org>",
"Asteroid Institute",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust reader for NASA/NAIF SPICE kernel formats (DAF, SPK, PCK, text kernels). Independent of the CSpice toolkit."
readme = "README.md"
keywords = [
"spice",
"naif",
"astronomy",
"ephemeris",
"astrodynamics",
]
categories = [
"science",
"aerospace",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/B612-Asteroid-Institute/spicekit"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "spicekit"
path = "src/lib.rs"
[[example]]
name = "read_spk"
path = "examples/read_spk.rs"
[dependencies.bytemuck]
version = "1.16"
[dependencies.memmap2]
version = "0.9"
[dependencies.rayon]
version = "1.11"
[dependencies.rustc-hash]
version = "2.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tempfile]
version = "3"