reqwest-oauth1 0.3.0

Add OAuth1 signature to reqwest with oauth1-request.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  rust-overlay = (import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"));
  pkgs = import <nixpkgs> { overlays = [ rust-overlay ]; };
  rust-toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
with pkgs;
mkShell {
  packages = [
    lld
    clang
    rust-toolchain
  ];
  buildInputs = [
    openssl
  ];
  # envs
  LD_LIBRARY_PATH = lib.makeLibraryPath [ openssl ];
}