manifest-schema: Disable std prelude

This commit is contained in:
Taiki Endo
2026-02-09 23:34:12 +09:00
parent 672b40bb62
commit c9244c19ac

View File

@@ -4,6 +4,7 @@
Structured access to the install-action manifests.
*/
#![no_std]
#![doc(test(
no_crate_inject,
attr(allow(
@@ -28,8 +29,13 @@ Structured access to the install-action manifests.
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
extern crate alloc;
extern crate std;
use alloc::collections::BTreeMap;
use alloc::{
collections::BTreeMap,
string::{String, ToString as _},
vec::Vec,
};
use core::{
cmp::{self, Reverse},
fmt, slice,