Artiqwest is a simple HTTP client that routes *all (except localhost connects where it fallbacks to reqwest) requests through the Tor network using the
arti_client and hyper.
It provides two basic primitives: get and post, functions.
Artiqwest also provides a ws function to create a websocket connection to a hidden service using tokio-tungstenite. Currently websockets only work over tor and are untested over clearnet.
Example
use get;
use post;
use ws;
use future;
use pin_mut;
use SinkExt;
async