What is the correct way to save and load StaticArrays in package version 1.5?
Basically, I used to be able to import
using StaticArrays
using BSON
and storing/loading worked fine.
Now the code above works for storing but not for loading data and instead I need
using StaticArraysCore
using BSON
Is that correct? Am I missing something? Is StaticArraysCore meant to be a dependency or an “internal” module which should only be used via StaticArrays.jl?