https://github.com/silathdiir/qiniu-upload-rs
Rust version of Qiniu Upload
https://github.com/silathdiir/qiniu-upload-rs
qiniu-uploader rust-library
Last synced: 3 months ago
JSON representation
Rust version of Qiniu Upload
- Host: GitHub
- URL: https://github.com/silathdiir/qiniu-upload-rs
- Owner: silathdiir
- License: mit
- Created: 2019-09-03T03:08:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-14T11:59:21.000Z (about 5 years ago)
- Last Synced: 2025-02-28T05:56:39.415Z (3 months ago)
- Topics: qiniu-uploader, rust-library
- Language: Rust
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qiniu-upload-rs
This project focusses on implementing the `Upload` functions for
[Qiniu](https://www.qiniu.com/) Cloud Service. It tries to pack the sufficient
and efficient Upload Client functions only for Qiniu Upload, and except other
Qiniu services.## Usage
Add the following to your `Cargo.toml`:
```toml
[dependencies]
qiniu-upload-rs = "0.0.1"
```You could checkout the user code in folder `examples/upload_data.rs`, and update
constants `ACCESS_KEY`, `SECRET_KEY` and `BUCKET` of your own Qiniu account.
Then run this example as below.```
cargo run --example upload_data
```After running the above command, you could check if the test file is uploaded
successfully on Qiniu Admin Web.