crates_io_api-wasm-patch 0.12.1

WASM-compatible patch of crates_io_api
Documentation
1
2
3
4
5
6
7
8
9
10
11
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
    buildInputs = with pkgs; [
      pkg-config
      openssl
    ];
    LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
      pkgs.openssl
    ];
}