Add S3 VFS backend: VfsBackend impl for S3-compatible storage
Some checks failed
Test / test (push) Has been cancelled
Test / build (push) Has been cancelled

- S3Vfs with all 15 VfsBackend methods via rusty-s3 + ureq
- S3VfsFile for buffered writes + ranged reads
- AWS Signature V4 pre-signed URLs (rusty-s3)
- ListObjectsV2 for directory listing (prefix + delimiter)
- Path-style URL mapping (/path to bucket/key)
This commit is contained in:
Warren
2026-06-18 23:44:52 +08:00
parent 69efcdf5c5
commit 960ee87ce9
5 changed files with 829 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
pub mod open_flags;
pub mod local_fs;
pub mod s3_fs;
pub mod util;
use std::path::{Path, PathBuf};