asteroidsfactory 0.0.1

Asteroid factory — classify, build and catalogue asteroids of any type: near-Earth, main belt, trojan, centaur, binary, rubble pile, metallic, and potentially hazardous.
Documentation
AsteroidsFactory/
├── Cargo.toml
├── 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
│   │   ├── collisions.rs
│   │   ├── evolution.rs
│   │   └── orbits.rs
│   ├── observables/
│   │   ├── mod.rs
│   │   ├── lightcurve.rs
│   │   └── photometry.rs
│   ├── physics/
│   │   ├── mod.rs
│   │   ├── gravity.rs
│   │   └── thermal.rs
│   ├── types/
│   │   ├── mod.rs
│   │   ├── binary.rs
│   │   ├── centaur.rs
│   │   ├── main_belt.rs
│   │   ├── metallic.rs
│   │   ├── near_earth.rs
│   │   ├── pha.rs
│   │   ├── rubble_pile.rs
│   │   └── trojan.rs
│   └── utils/
│       ├── mod.rs
│       ├── helpers.rs
│       └── io.rs
└── tests/
    ├── engine_tests.rs
    ├── physics_tests.rs
    └── types_tests.rs