Difference between OrdinaryDiffEq.jl and DifferentialEquations.jl

Hello,
I have a basic question: I want to know the difference between OrdinaryDiffEq.jl and DifferentialEquations.jl.

I know that OrdinaryDiffEq.jl is a subset of DifferentialEquations.jl but on the user interface, they are very similar.
I am also aware that DifferentialEquations.jl extends itself to the ModelingToolkit,jl framework but when it comes to purely solving ODEs I can see no difference between them.

The reason I ask this is to know which is a recommended package to use for purely solving ODEs.

OrdinaryDiffEq.jl contains the solvers for ODEs and DAEs.

DifferentialEquations.jl is an umbrella package that includes OrdinaryDiffEq.jl, but also packages for other solvers, like SDEs etc.

DifferentialEquations.jl takes longer to precompile and load, so if you only need OrdinaryDiffEq you can use that directly.