rust-spice 0.4.7

WOW! The complete NASA/NAIF Spice toolkit is actually usable on Rust.
Documentation
1
2
3
4
5
6
7
use spice;

fn main() -> Result<(), spice::SystemError> {
    let mut system = spice::Kernel::new("rsc/krn/hera_study_PO_EMA_2024.tm")?;
    system.unload()?;
    Ok(())
}