littlefs2
littlefs2 copied to clipboard
Rename `object_safe` module
"Object safety" is being renamed to "Dyn compatibility" in Rust: https://github.com/rust-lang/rust/issues/130852
It might make sense to adapt it here too in the next breaking release (or maybe earlier with a pub use object_safe as dyn_compatible)
In littlefs2-core, we already dropped the module entirely. In littlefs2, we only add DynStorage and FilesystemCallback so we could just remove the re-exports and move these two types to the top level.