Would it be possible to add an option for the generated code to avoid referencing std and imports that are only in the prelude when std is linked, e.g. std::result::Result and ToString, and instead use e.g. core::result::Result and alloc::string::ToString?
Would it be possible to add an option for the generated code to avoid referencing
std
and imports that are only in the prelude whenstd
is linked, e.g.std::result::Result
andToString
, and instead use e.g.core::result::Result
andalloc::string::ToString
?