1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//! # Crypsol Storage
//!
//! Multi-cloud storage library for Rust with image processing, validation,
//! and thumbnail generation.
//!
//! ## Backends
//!
//! | Feature | Backend | Presigned URLs |
//! |---------|---------|----------------|
//! | `s3` *(default)* | AWS S3, Cloudflare R2, MinIO | Yes |
//! | `gcs` | Google Cloud Storage | No |
//! | `azure` | Azure Blob Storage | No |
//! | `local` | Local filesystem (dev/testing) | No |
//!
//! ## Quick start
//!
//! ```rust,no_run
//! use crypsol_storage::{S3Backend, StorageConfig, StorageService, ImageUploadConfig};
//!
//! # async fn run() -> Result<(), crypsol_storage::Error> {
//! let backend = S3Backend::builder()
//! .region("us-east-1")
//! .bucket("my-bucket")
//! .credentials("AKID...", "secret...")
//! .build()?;
//!
//! let service = StorageService::new(backend, StorageConfig::default());
//!
//! // Upload an image with automatic thumbnail generation
//! let config = ImageUploadConfig::default();
//! # let image_bytes: Vec<u8> = vec![];
//! let result = service
//! .upload_image_with_config(&image_bytes, "image/jpeg", &config)
//! .await?;
//!
//! println!("Image: {}", result.url);
//! println!("Thumbnail: {}", result.thumbnail_url);
//! # Ok(())
//! # }
//! ```
//!
//! See the [README](https://github.com/crypsol/crypsol_storage) for full
//! examples covering every backend and API method.
pub use StorageConfig;
pub use Error;
pub use StorageService;
pub use StorageBackend;
pub use ;
pub use ;
pub use ;
pub use ;
pub use LocalBackend;