qcos 0.1.15

Provide basic interface encapsulation of Tencent Cloud Object Storage (cos)
Documentation
/*!
本包提供腾讯云对象存储(cos)基本接口封装.

基本用法:

```
use std::path::PathBuf;
use qcos::client::Client;
use mime;

#[tokio::main]
async fn main() {
    let client = Client::new("secrect-id", "secrect-key", "qcloudtest-xxx", "ap-guangzhou");
    /// 上传文件
    let res = client.put_object(&PathBuf::from("Cargo.toml"), "Cargo.toml", Some(mime::TEXT_PLAIN_UTF_8), None).await;
    /// 删除文件
    let res = client.delete_object("Cargo.toml").await;
}
```
*/

pub mod acl;
pub mod bucket;
pub mod client;
pub mod objects;
pub mod request;
pub mod service;
pub mod signer;