manifest-schema: Apply clippy::std_instead_of_{alloc,core}

This commit is contained in:
Taiki Endo
2026-01-22 21:11:40 +09:00
parent c8c5ce5c64
commit c0d235325e

View File

@@ -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},