lib: Only export traits (Ext and ExtManual) from prelude
In gir it was brought up 1 that some traits (in particular
*ExtManual
) are exported from the crate root in addition to the
prelude, cluttering the environment unnecessarily. This commit removes
all these reexports, leaving those in prelude (that were already there)
only.
After this commit everything matching Ext(Manual)?\b
in lib.rs
sits
within pub mod prelude {};
.
Will check the impact on the Rust plugins next.