No description
Find a file
Vincent Ambo 67bfba446d fix(lib): Support large body uploads with repeated read callbacks
When uploading larger amounts of data, cURL will call the read
callback incrementally multiple times to receive all the expected
data.

Previously if the size of the data to upload exceeded the size of the
initial buffer provided by cURL, the write (and thus the request)
would fail.

This changes the logic to write the data in chunks of a size that are
acceptable to cURL.
2019-02-27 14:39:16 +01:00
src fix(lib): Support large body uploads with repeated read callbacks 2019-02-27 14:39:16 +01:00
.gitignore feat: Initial check-in of working client layer 2019-02-26 11:20:38 +01:00
.travis.yml chore(build): Configure Travis CI builds 2019-02-26 17:30:56 +01:00
Cargo.toml chore(cargo): Bump version to v0.2.0 2019-02-26 23:10:24 +01:00
CODE_OF_CONDUCT.md docs: Update README, add contribution guidelines & CoC 2019-02-26 17:30:53 +01:00
CONTRIBUTING.md docs: Update README, add contribution guidelines & CoC 2019-02-26 17:30:53 +01:00
LICENSE chore: License under GPL-3.0-or-later 2019-02-26 17:30:56 +01:00
README.md docs(README): Fix crates.io badge URL 2019-02-26 23:11:29 +01:00

crimp

Build Status

Crimp is an HTTP client interface on top of the Rust bindings to cURL.

The documentation for this crate is primarily in the module documentation