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
use crate::error::Result;
use std::path::Path;

/// Calcula o hash MD5 de um arquivo
pub fn compute_file_hash<P: AsRef<Path>>(_path: P) -> Result<String> {
    // TODO: Implementar cálculo de hash
    Ok(String::new())
}