19 releases (8 breaking)
new 0.9.1 | Oct 21, 2024 |
---|---|
0.8.1 | Oct 17, 2024 |
0.8.0 | May 24, 2024 |
0.6.3 | Feb 19, 2024 |
0.1.0 | Feb 9, 2023 |
#1 in #remi
554 downloads per month
69KB
911 lines
Crate Features | Description | Enabled by default? |
---|---|---|
export-crates |
Exports all the used AWS crates as a module called aws |
Yes. |
unstable |
Tap into unstable features from remi_gridfs and the remi crate. |
No. |
tracing |
Enables the use of tracing::instrument and emit events for actions by the crate. |
No. |
serde |
Enables the use of serde in StorageConfig |
No. |
log |
Emits log records for actions by the crate | No. |
Example
// Cargo.toml:
//
// [dependencies]
// remi = "^0"
// remi-s3 = { version = "^0", features = ["export-crates"] }
// tokio = { version = "^1", features = ["full"] }
use remi_s3::{StorageService, StorageConfig, aws::s3};
use remi::{StorageService as _, UploadRequest};
#[tokio::main]
async fn main() {
}
Dependencies
~31MB
~412K SLoC