about summary refs log tree commit diff
path: root/Cargo.toml
AgeCommit message (Collapse)AuthorFilesLines
2019-02-27 chore(cargo): Bump version to v0.2.2Vincent Ambo1-1/+1
2019-02-26 chore(cargo): Bump version to v0.2.0Vincent Ambo1-1/+1
2019-02-26 refactor: Use cURL's own basic auth implementationVincent Ambo1-3/+1
Drops the dependency on the base64-crate, which it turns out isn't necessary as cURL has this built-in.
2019-02-26 chore(cargo): Prepare Cargo manifest for crate releaseVincent Ambo1-0/+4
2019-02-26 chore: License under GPL-3.0-or-laterVincent Ambo1-0/+1
2019-02-26 feat: Add optional `Request::basic_auth` utility functionVincent Ambo1-1/+3
This function adds a dependency on `base64` and is thus gated behind the (enabled by default) `basic_auth` feature.
2019-02-26 refactor: Introduce `json` feature and make it optionalVincent Ambo1-2/+6
Gates support for `serde_json` behind a Cargo feature called `json` that is enabled by default.
2019-02-26 feat: Support JSON body serialization in requests & responsesVincent Ambo1-0/+2
Uses `serde_json` to provide serialisation and deserialisation of request/response bodies.
2019-02-26 feat: Initial check-in of working client layerVincent Ambo1-0/+7