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
12
13
14
use std::path::PathBuf;

/// Scanner de arquivos que varre diretórios
pub struct FileScanner {
    pub path: PathBuf,
}

impl FileScanner {
    pub fn new(path: PathBuf) -> Self {
        Self { path }
    }

    // TODO: Implementar scan de arquivos
}