#amazon-s3 #minio #s3 #tokio

minio-rsc

rust for minio, api is compliant with the Amazon S3 protocol

6 releases

0.2.2 Apr 3, 2024
0.2.1 Mar 23, 2024
0.2.0 Sep 22, 2023
0.1.7 Sep 8, 2023
0.1.2 Feb 20, 2023

#1016 in Network programming

Download history 40/week @ 2024-01-25 84/week @ 2024-02-01 60/week @ 2024-02-08 262/week @ 2024-02-15 101/week @ 2024-02-22 72/week @ 2024-02-29 62/week @ 2024-03-07 72/week @ 2024-03-14 210/week @ 2024-03-21 163/week @ 2024-03-28 114/week @ 2024-04-04 85/week @ 2024-04-11 38/week @ 2024-04-18 91/week @ 2024-04-25 111/week @ 2024-05-02 79/week @ 2024-05-09

331 downloads per month

MIT/Apache

230KB
5.5K SLoC

minio-rsc

Crates.io Documentation License

Rust Library for Minio. API is compliant with the Amazon S3 protocol.

Minio client

use minio_rsc::client::{BucketArgs, KeyArgs};
use minio_rsc::error::Result;
use minio_rsc::provider::StaticProvider;
use minio_rsc::Minio;

async fn example() -> Result<()> {
    let provider = StaticProvider::new("minio-access-key-test", "minio-secret-key-test", None);
    let minio = Minio::builder()
        .endpoint("localhost:9022")
        .provider(provider)
        .secure(false)
        .build()
        .unwrap();
    let (buckets, owner) = minio.list_buckets().await?;

    minio.make_bucket(BucketArgs::new("bucket1"), false).await?;
    minio.make_bucket("bucket2", true).await?;

    minio.put_object("bucket1", "hello.txt", "hello minio!".into()).await?;
    minio.stat_object("bucket1", "hello.txt").await?;
    minio.get_object("bucket1", "hello.txt").await?;
    let key = KeyArgs::new("hello.txt").version_id(Some("cdabf31a-9752-4265-b137-6b3961fbaf9b".to_string()));
    minio.get_object("bucket1", key).await?;
    minio.remove_object("bucket1", "hello.txt").await?;

    let bucket2 = minio.bucket("bucket2");
    bucket2.put_object("hello.txt", "hello minio!".into()).await?;
    bucket2.stat_object("hello.txt").await?;
    bucket2.get_object("hello.txt").await?;
    bucket2.remove_object("hello.txt").await?;

    // if fs-tokio feature enabled
    // download file to local
    minio.fget_object("bucket1", "hello.txt", "local.txt").await?;
    // upload file to minio
    minio.fput_object("bucket1", "hello.txt", "local.txt").await?;

    minio.remove_bucket("bucket1").await?;
    minio.remove_bucket("bucket2").await?;

    Ok(())
}

Operations

Bucket operations Object operations
make_bucket get_object
list_buckets fget_object
bucket_exists copy_object
remove_bucket stat_object
list_object_versions remove_object
list_objects put_object
get_bucket_tags fput_object
set_bucket_tags presigned_get_object
del_bucket_tags presigned_put_object
get_bucket_versioning is_object_legal_hold_enabled
set_bucket_versioning enable_object_legal_hold_enabled
get_object_lock_config disable_object_legal_hold_enabled
set_object_lock_config get_object_tags
del_object_lock_config set_object_tags
del_object_tags
get_object_retention
set_object_retention
select_object_content

Features

Custom requests

Implemented by BaseExecutor

use minio_rsc::Minio;
use hyper::Method;
use minio_rsc::errors::Result;
use reqwest::Response;
use bytes::Bytes;

async fn get_object(minio:Minio)-> Result<Response> {
    let executor = minio.executor(Method::GET);
    let res: Response = executor
        .bucket_name("bucket")
        .object_name("test.txt")
        .query("versionId", "cdabf31a-9752-4265-b137-6b3961fbaf9b")
        .send_ok()
        .await?;
    Ok(res)
}

async fn put_object(minio:Minio, data:Bytes)-> Result<()> {
    let executor = minio.executor(Method::PUT);
    let res: Response = executor
        .bucket_name("bucket")
        .object_name("test.txt")
        .body(data)
        .send_ok()
        .await?;
    Ok(())
}

Dependencies

~11–26MB
~370K SLoC