docs.rs failed to build rusqbin_lib-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Rusqbin
Rusqbin is a web server that stashes your requests for later retrieval. It is available as both a binary and a library.
To use it as a binary, simply install it using cargo install rusqbins
and then cargo rusqbins
,
and follow the simple usage instructions.
To use it as a library from within Rust code:
extern crate rusqbin;
extern crate hyper;
extern crate rustc_serialize;
use *;
use *;
use *;
use json;
use Client;
use Read;
In the example above, we use the default InMemoryBins
for storage, but you can pass any given implementation of
rusqbin::storage::Bins
when creating a BinsServer.
Requestbin written in Rust. Inspired by Requestinator