https://github.com/vhbit/curl-rs
A curl(libcurl) mod for rust.
https://github.com/vhbit/curl-rs
Last synced: 8 months 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 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-29T13:55:01.000Z (about 11 years ago)
- Last Synced: 2024-11-02T23:32:50.766Z (about 1 year 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

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