rustdrivesync 1.1.1

Production-ready CLI tool for one-way file synchronization with Google Drive. Features: dependency injection, rate limiting, retry with backoff, parallel uploads, and comprehensive documentation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Módulos de integração com Google Drive
pub mod auth;
pub mod client;
pub mod models;
pub mod rate_limiter;
pub mod storage_impl;
pub mod upload;

// Re-exports
pub use rate_limiter::DriveRateLimiter;
pub use storage_impl::DriveStorageBackend;