From 27d00055df8691a6bd99aaf38633a7338b16cc6a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 11 Jul 2026 16:33:05 +0900 Subject: chore: use fully-qualified name for Rc/RefCell --- crates/shirabe/src/config.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/config.rs') diff --git a/crates/shirabe/src/config.rs b/crates/shirabe/src/config.rs index cac6181e..d1cd4212 100644 --- a/crates/shirabe/src/config.rs +++ b/crates/shirabe/src/config.rs @@ -15,7 +15,6 @@ use shirabe_php_shim::{ is_array, is_string, parse_url, php_to_string, rtrim, strtolower, strtoupper, strtr, substr, trigger_error, }; -use std::cell::RefCell; use crate::advisory::Auditor; use crate::downloader::TransportException; @@ -40,7 +39,7 @@ pub struct Config { warned_hosts: IndexMap, /// @var array ssl_verify_warned_hosts: IndexMap, - source_of_config_value: RefCell>, + source_of_config_value: std::cell::RefCell>, } impl Config { @@ -229,7 +228,7 @@ impl Config { local_auth_config_source: None, warned_hosts: IndexMap::new(), ssl_verify_warned_hosts: IndexMap::new(), - source_of_config_value: RefCell::new(IndexMap::new()), + source_of_config_value: std::cell::RefCell::new(IndexMap::new()), }; let config_clone = this.config.clone(); -- cgit v1.3.1