parsec_access 2.0.0

Access the PARSEC database for stellar evolutionary trajectories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(clippy::unwrap_used)]
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]
#[macro_use]
extern crate uom;

mod access;
pub mod data;
pub mod error;
mod file;
pub mod getters;
pub mod line;
pub mod trajectory;
pub mod units;

const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
const PACKAGE_VERSION: &str = env!("CARGO_PKG_VERSION");