Closed helgee closed 8 months ago
Attention: Patch coverage is 93.78806%
with 51 lines
in your changes are missing coverage. Please review.
Project coverage is 97.28%. Comparing base (
782c32f
) to head (191507a
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I split
lox-core
into the following crates:lox-bodies
: Celestial body structs and traitslox-comms
: RF modellinglox-coords
: Orbit structs and traitslox-earth
: Earth-specific coordinate frameslox-ephem
: Ephemerideslox-utils
: The rest...In the process I had to heavily refactor
lox-gen
and broke the circular dependency betweenlox-gen
andlox-core
.I also consolidated the
lox-space
andlox-py
packages:lox-space
will collect all the Python wrappers going forward.The dependencies of all crates are now centrally managed in the top-level
Cargo.toml
. This should also be done for all dependencies that are added in the future so that we can ensure consistent versions across all crates.