Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vhbit/curl-rs
A curl(libcurl) mod for rust.
https://github.com/vhbit/curl-rs
Last synced: about 1 month ago
JSON representation
A curl(libcurl) mod for rust.
- Host: GitHub
- URL: https://github.com/vhbit/curl-rs
- Owner: vhbit
- License: mit
- Fork: true (andelf/rust-curl)
- Created: 2014-06-24T16:07:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-29T13:55:01.000Z (over 10 years ago)
- Last Synced: 2024-08-02T08:10:12.678Z (4 months ago)
- Language: Rust
- Size: 476 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust - vhbit/curl-rs
README
# curl
Master
![build status](https://travis-ci.org/vhbit/curl-rs.svg?branch=master)Dev
![build status](https://travis-ci.org/vhbit/curl-rs.svg?branch=dev)A lightweight Curl-wrapper for using (mostly) HTTP from Rust.
While there are a couple of Rust HTTP libraries like
[rust-http](https://github.com/chris-morgan/rust-http) and its
successor [teepee](https://github.com/teepee/teepee). But the first
one is considered deprecated and the second one is not pretty usable
yet. Plus SSL support comes only with OpenSSL.Curl, in other hand, has pretty good history + allows to use a lot of
different SSL backends, for example, it works with Apple security
frameworks on Mac/iOS. It also can be used to support other protocols
although they're not in plans in near future.I hope situation in Rust-land will change soon and it will be possible
to drop this one in favor of Rust-only stack.## Docs
[Available here](http://www.rust-ci.org/vhbit/curl-rs/doc/curl/)
## compile
make lib
## test
make tests