Revert "xso-proc: Replace std stuff with alloc/core stuff"

This reverts commit 4e5f0bc961.

Unfortunately, in std contexts, the `alloc` crate is not imported. That
means we cannot rely on it being accessible and it in fact breaks builds
of crates which are not `no_std`.

Fixes #155.
This commit is contained in:
Jonas Schäfer 2025-01-20 17:52:25 +01:00
commit 6ec275d381
8 changed files with 8 additions and 12 deletions

View file

@ -51,7 +51,7 @@ impl Field for TextField {
Ok(FieldBuilderPart::Text {
value: FieldTempInit {
init: quote! { ::alloc::string::String::new() },
init: quote! { ::std::string::String::new() },
ty: string_ty(Span::call_site()),
},
collect: quote! {