mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-17 19:52:38 +08:00
manifest-schema: Disable std prelude
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
Structured access to the install-action manifests.
|
Structured access to the install-action manifests.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#![no_std]
|
||||||
#![doc(test(
|
#![doc(test(
|
||||||
no_crate_inject,
|
no_crate_inject,
|
||||||
attr(allow(
|
attr(allow(
|
||||||
@@ -28,8 +29,13 @@ Structured access to the install-action manifests.
|
|||||||
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
||||||
|
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
extern crate std;
|
||||||
|
|
||||||
use alloc::collections::BTreeMap;
|
use alloc::{
|
||||||
|
collections::BTreeMap,
|
||||||
|
string::{String, ToString as _},
|
||||||
|
vec::Vec,
|
||||||
|
};
|
||||||
use core::{
|
use core::{
|
||||||
cmp::{self, Reverse},
|
cmp::{self, Reverse},
|
||||||
fmt, slice,
|
fmt, slice,
|
||||||
|
|||||||
Reference in New Issue
Block a user