dwarfplanetsfactory 0.0.3

Dwarf planet factory — classify, build and catalogue dwarf planets of any type: Kuiper belt, scattered disk, plutino, cold classical, detached, binary, Ceres-type, and sednoid.
Documentation
# Arborescence

```
DwarfPlanetsFactory/
├── Cargo.toml
├── Cargo.lock
├── ChangeLog.md
├── ComingSoon.md
├── Contributing
├── LICENSE
├── README.md
├── lastest_versions.sh
├── examples/
│   ├── generation.rs
│   ├── observables.rs
│   └── physics.rs
├── src/
│   ├── lib.rs
│   ├── config/
│   │   ├── mod.rs
│   │   └── parameters.rs
│   ├── engine/
│   │   ├── mod.rs
│   │   ├── evolution.rs
│   │   ├── orbits.rs
│   │   └── resonance.rs
│   ├── observables/
│   │   ├── mod.rs
│   │   ├── lightcurve.rs
│   │   └── photometry.rs
│   ├── physics/
│   │   ├── mod.rs
│   │   ├── gravity.rs
│   │   └── thermal.rs
│   ├── types/
│   │   ├── mod.rs
│   │   ├── binary_dwarf.rs
│   │   ├── ceres_type.rs
│   │   ├── cold_classical.rs
│   │   ├── detached.rs
│   │   ├── kuiper_belt.rs
│   │   ├── plutino.rs
│   │   ├── scattered_disk.rs
│   │   └── sednoid.rs
│   └── utils/
│       ├── mod.rs
│       ├── helpers.rs
│       └── io.rs
└── tests/
    ├── engine_tests.rs
    ├── physics_tests.rs
    └── types_tests.rs
```