From ddc4e1cddca78e99adbd823759382deed6c2d708 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 12 May 2026 02:02:45 +0900 Subject: feat(init): add scaffold files --- crates/shirabe/src/util/http/curl_downloader.rs | 1 + crates/shirabe/src/util/http/curl_response.rs | 1 + crates/shirabe/src/util/http/proxy_item.rs | 1 + crates/shirabe/src/util/http/proxy_manager.rs | 1 + crates/shirabe/src/util/http/request_proxy.rs | 1 + crates/shirabe/src/util/http/response.rs | 1 + 6 files changed, 6 insertions(+) create mode 100644 crates/shirabe/src/util/http/curl_downloader.rs create mode 100644 crates/shirabe/src/util/http/curl_response.rs create mode 100644 crates/shirabe/src/util/http/proxy_item.rs create mode 100644 crates/shirabe/src/util/http/proxy_manager.rs create mode 100644 crates/shirabe/src/util/http/request_proxy.rs create mode 100644 crates/shirabe/src/util/http/response.rs (limited to 'crates/shirabe/src/util/http') diff --git a/crates/shirabe/src/util/http/curl_downloader.rs b/crates/shirabe/src/util/http/curl_downloader.rs new file mode 100644 index 0000000..518459c --- /dev/null +++ b/crates/shirabe/src/util/http/curl_downloader.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/CurlDownloader.php diff --git a/crates/shirabe/src/util/http/curl_response.rs b/crates/shirabe/src/util/http/curl_response.rs new file mode 100644 index 0000000..81af5af --- /dev/null +++ b/crates/shirabe/src/util/http/curl_response.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/CurlResponse.php diff --git a/crates/shirabe/src/util/http/proxy_item.rs b/crates/shirabe/src/util/http/proxy_item.rs new file mode 100644 index 0000000..10b66c4 --- /dev/null +++ b/crates/shirabe/src/util/http/proxy_item.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/ProxyItem.php diff --git a/crates/shirabe/src/util/http/proxy_manager.rs b/crates/shirabe/src/util/http/proxy_manager.rs new file mode 100644 index 0000000..33b0864 --- /dev/null +++ b/crates/shirabe/src/util/http/proxy_manager.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/ProxyManager.php diff --git a/crates/shirabe/src/util/http/request_proxy.rs b/crates/shirabe/src/util/http/request_proxy.rs new file mode 100644 index 0000000..826598f --- /dev/null +++ b/crates/shirabe/src/util/http/request_proxy.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/RequestProxy.php diff --git a/crates/shirabe/src/util/http/response.rs b/crates/shirabe/src/util/http/response.rs new file mode 100644 index 0000000..61011cb --- /dev/null +++ b/crates/shirabe/src/util/http/response.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/Response.php -- cgit v1.3.1