summaryrefslogtreecommitdiffstats
path: root/src/errors.rs
AgeCommit message (Collapse)Author
2020-10-07Add basic async clientPaul Woolcock
This adds a module, accessible by compiling with `--features async`, that provides an `elefren::async::Client`. The client is runtime-agnostic, and currently only provides unauthenticated access, see the docs for the full list of methods that can be performed* with this client. * note that some API calls are publicly available by default, but can be changed via instance settings to not be publicly accessible
2020-09-27Manually updated reqwest to 10.8 and url to 2.1ranfdev
2020-09-25Cargo-fmt passPaul Woolcock
2020-09-25Various cleanup tasksPaul Woolcock
* Remove old `extern crate` stmts * Remove rust-skeptic * Clean up Cargo.toml
2020-06-11Update to the 2018 editionPaul Woolcock
Only 2 years later :eyeroll:
2020-06-08Remove url 2.xleo60228
I thought tungstenite needed it, but it doesn't.
2020-06-08Use WebSockets for eventsleo60228
2020-04-07Update error type to remove deprecated `description` usesPaul Woolcock
2019-03-09Add `min_id` to pagination paramsPaul Woolcock
also switches to using serde_qs instead of manually serializing the query string
2019-03-05update to 0.18.2Paul Woolcock
2019-03-05Add built-in support for deserializing Data from the envPaul Woolcock
2019-02-05Add docs for format_err macroPaul Woolcock
2018-10-10Fix the error used herePaul Woolcock
The `MastodonBuilder` is going to be changed to be `pub` soon, so let's fix this redundant error variant now
2018-10-03Missed a couple .unwraps, take them outPaul Woolcock
2018-09-07change `POST /search` to `GET /search`Paul Woolcock
2018-08-29feat(helpers): add json helper modulePaul Woolcock
2018-08-24rustfmt passPaul Woolcock
2018-08-24Add some tests for the Error::from implsPaul Woolcock
2018-08-23add toml helpers to data.rsPaul Woolcock
2018-08-23rustfmt passPaul Woolcock
2018-08-23Revamp registration & auth processPaul Woolcock
2018-08-23Add necessary error variantPaul Woolcock
2018-08-22No reason to impl Deser for both the ApiError and Error typesPaul Woolcock
2018-08-22Move From<> impls tooPaul Woolcock
2018-08-22Breakout errors into their own modulePaul Woolcock