diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:17:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:17:08 +0900 |
| commit | e3e8806aec771e482899ed3470e920f7b291fa95 (patch) | |
| tree | 786fac56e96978220131ffeaff807b732a377bfe /crates/shirabe/src/cache.rs | |
| parent | 64e02ef08f0f479937fc194f79eac997327a79dd (diff) | |
| download | php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.gz php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.zst php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.zip | |
refactor(symfony-finder): extract symfony/finder into the shirabe-symfony-finder crate
Move `Symfony\Component\Finder` out of shirabe-external-packages and into
its own crate, so the path is `shirabe_symfony_finder::Finder` instead of
`shirabe_external_packages::symfony::finder::Finder`.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/cache.rs')
| -rw-r--r-- | crates/shirabe/src/cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/cache.rs b/crates/shirabe/src/cache.rs index 11afe2cb..435e45c6 100644 --- a/crates/shirabe/src/cache.rs +++ b/crates/shirabe/src/cache.rs @@ -6,13 +6,13 @@ use crate::util::Filesystem; use crate::util::Platform; use crate::util::Silencer; use chrono::Utc; -use shirabe_external_packages::symfony::finder::Finder; use shirabe_pcre::{CaptureKey, Preg}; use shirabe_php_shim::{ ErrorException, bin2hex, clearstatcache, date_format_to_strftime, dirname, disk_free_space, file_exists, file_get_contents, file_put_contents, filemtime, function_exists, hash_file, is_dir, is_writable, mkdir, php_regex, random_bytes, random_int, rename, time, unlink, }; +use shirabe_symfony_finder::Finder; use std::sync::Mutex; /// Reads/writes to a filesystem cache |
