mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-10 22:50:32 +00:00
manifest-schema: Apply clippy::std_instead_of_{alloc,core}
This commit is contained in:
@@ -20,19 +20,20 @@ Structured access to the install-action manifests.
|
|||||||
// clippy::exhaustive_structs,
|
// clippy::exhaustive_structs,
|
||||||
clippy::impl_trait_in_params,
|
clippy::impl_trait_in_params,
|
||||||
// clippy::missing_inline_in_public_items,
|
// clippy::missing_inline_in_public_items,
|
||||||
// clippy::std_instead_of_alloc,
|
clippy::std_instead_of_alloc,
|
||||||
// clippy::std_instead_of_core,
|
clippy::std_instead_of_core,
|
||||||
)]
|
)]
|
||||||
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
||||||
|
|
||||||
use std::{
|
extern crate alloc;
|
||||||
|
|
||||||
|
use alloc::collections::BTreeMap;
|
||||||
|
use core::{
|
||||||
cmp::{self, Reverse},
|
cmp::{self, Reverse},
|
||||||
collections::BTreeMap,
|
fmt, slice,
|
||||||
fmt,
|
|
||||||
path::Path,
|
|
||||||
slice,
|
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
};
|
};
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
use serde::{
|
use serde::{
|
||||||
de::{self, Deserialize, Deserializer},
|
de::{self, Deserialize, Deserializer},
|
||||||
|
|||||||
Reference in New Issue
Block a user