libpixiv 0.2.1

pixiv.net API client library
Documentation
{
  pkgs ? import <nixpkgs> { },
  lib ? pkgs.lib,
}:

pkgs.mkShell {
  name = "cdnindex shell";
  buildInputs = with pkgs; [ openssl ];
  nativeBuildInputs = with pkgs; [
    sccache
    rustc
    cargo
    rustfmt
    clippy
    pkg-config
    rust-analyzer
  ];

  PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
}