summaryrefslogtreecommitdiffstats
path: root/src/requests/filter.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-10-07Change builder style for requestsPaul Woolcock
2020-09-26Remove `HttpSend` and `HttpSender`Paul Woolcock
this was maybe a good idea, but it isn't really needed
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:
2018-09-14Keyword/filtering APIPaul Woolcock
This adds the 5 methods for the mastodon API that deal with keyword filtering: GET /api/v1/filters POST /api/v1/filters GET /api/v1/filters/:id PUT /api/v1/filters/:id DELETE /api/v1/filters/:id Closes #71