Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexcrichton/tokio-curl
Asynchronous HTTP client built on libcurl
https://github.com/alexcrichton/tokio-curl
Last synced: 11 days ago
JSON representation
Asynchronous HTTP client built on libcurl
- Host: GitHub
- URL: https://github.com/alexcrichton/tokio-curl
- Owner: alexcrichton
- License: apache-2.0
- Created: 2016-08-26T21:59:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-02T18:53:17.000Z (almost 6 years ago)
- Last Synced: 2024-10-07T15:46:14.044Z (about 1 month ago)
- Language: Rust
- Size: 652 KB
- Stars: 110
- Watchers: 9
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# tokio-curl
An implementation of an asynchronous HTTP client using futures backed by
libcurl.[![Build Status](https://travis-ci.org/alexcrichton/tokio-curl.svg?branch=master)](https://travis-ci.org/alexcrichton/tokio-curl)
[![Build status](https://ci.appveyor.com/api/projects/status/1uqcw7g5e5ah3or2?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-curl)[Documentation](https://docs.rs/tokio-curl)
## Usage
First, add this to your `Cargo.toml`:
```toml
[dependencies]
tokio-curl = "0.1"
```Next, add this to your crate:
```rust
extern crate tokio_curl;
```# License
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.