diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-21 19:28:50 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-21 19:28:50 +0900 |
| commit | 1deb0b88edd455142160c0a03c094422907f2df6 (patch) | |
| tree | a04fe95f60c7289ab4d34ed04a540a1e029d9ad5 /Cargo.toml | |
| parent | 9a60b4d6e2ca0c87bf767d31299caae0b91c2706 (diff) | |
| download | php-shirabe-1deb0b88edd455142160c0a03c094422907f2df6.tar.gz php-shirabe-1deb0b88edd455142160c0a03c094422907f2df6.tar.zst php-shirabe-1deb0b88edd455142160c0a03c094422907f2df6.zip | |
feat(php-shim): implement hash, hash_raw, hash_file
Support md5, sha1, sha256, and xxh3 algorithms.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,9 +24,11 @@ reqwest = "0.13.4" serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.149", features = ["preserve_order"] } serde_urlencoded = "0.7.1" -sha1 = "0.10.6" +sha1 = "0.11.0" +sha2 = "0.11.0" tempfile = "3.27.0" tokio = { version = "1.52.3", features = ["full"] } +twox-hash = "2.1.2" url = "2.5.8" zip = "8.6.0" |
